ConstructorBuilder.DefineParameter(Int32, ParameterAttributes, String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 생성자의 매개 변수를 정의합니다.
public:
System::Reflection::Emit::ParameterBuilder ^ DefineParameter(int iSequence, System::Reflection::ParameterAttributes attributes, System::String ^ strParamName);
public System.Reflection.Emit.ParameterBuilder DefineParameter (int iSequence, System.Reflection.ParameterAttributes attributes, string? strParamName);
public System.Reflection.Emit.ParameterBuilder DefineParameter (int iSequence, System.Reflection.ParameterAttributes attributes, string strParamName);
member this.DefineParameter : int * System.Reflection.ParameterAttributes * string -> System.Reflection.Emit.ParameterBuilder
Public Function DefineParameter (iSequence As Integer, attributes As ParameterAttributes, strParamName As String) As ParameterBuilder
매개 변수
- iSequence
- Int32
매개 변수 목록에서 매개 변수의 위치입니다. 매개 변수는 첫 번째 매개 변수가 숫자 1부터 시작하여 인덱싱됩니다.
- attributes
- ParameterAttributes
매개 변수의 특성입니다.
- strParamName
- String
매개 변수의 이름입니다. 이름이 null 문자열일 수 있습니다.
반환
이 생성자의 새 매개 변수를 나타내는 개체입니다.
예외
iSequence
가 0보다 작거나, 생성자의 매개 변수 수보다 큽니다.
포함하는 형식을 CreateType()을 사용하여 만들었습니다.
설명
에 0을 iSequence
지정하는 경우 이 메서드는 예외를 ParameterBuilder throw하는 대신 를 반환합니다. 이 ParameterBuilder로 수행할 수 있는 유용한 작업은 없습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET