ActionResultStatusCodeAttribute 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ActionResult 생성자 및 도우미 메서드 매개 변수에 주석이 추가된 특성은 매개 변수가 ActionResult에 대한 "statusCode"를 설정하는 데 사용됨을 나타냅니다.
분석기는 이 매개 변수를 형식 이름으로 일치합니다. 이렇게 하면 사용자가 이 형식을 노출하지 않고도 사용자 정의 특성으로 사용자 지정 결과 \ 사용자 지정 도우미에 주석을 달 수 있습니다.
분석기가 상속 그래프를 탐색하지 않으므로 이 특성은 의도적으로 Inherited=false로 표시됩니다.
public ref class ActionResultStatusCodeAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Parameter, AllowMultiple=false, Inherited=false)]
public sealed class ActionResultStatusCodeAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Parameter, AllowMultiple=false, Inherited=false)>]
type ActionResultStatusCodeAttribute = class
inherit Attribute
Public NotInheritable Class ActionResultStatusCodeAttribute
Inherits Attribute
- 상속
-
ActionResultStatusCodeAttribute
- 특성
예제
주석이 추가된 생성자 매개 변수:
public StatusCodeResult([ActionResultStatusCode] int statusCode)
{
StatusCode = statusCode;
}
생성자
ActionResultStatusCodeAttribute() |
ActionResult 생성자 및 도우미 메서드 매개 변수에 주석이 추가된 특성은 매개 변수가 ActionResult에 대한 "statusCode"를 설정하는 데 사용됨을 나타냅니다. 분석기는 이 매개 변수를 형식 이름으로 일치합니다. 이렇게 하면 사용자가 이 형식을 노출하지 않고도 사용자 정의 특성으로 사용자 지정 결과 \ 사용자 지정 도우미에 주석을 달 수 있습니다. 분석기가 상속 그래프를 탐색하지 않으므로 이 특성은 의도적으로 Inherited=false로 표시됩니다. |