다음을 통해 공유


SoapServices.PreLoad 메서드

정의

형식에 적용된 SoapTypeAttribute에 설정된 값을 바탕으로 지정된 형식을 미리 로드합니다.

오버로드

PreLoad(Assembly)

각 형식과 관련된 Type에서 찾은 정보에서, 지정된 Assembly에서 찾은 모든 SoapTypeAttribute을 미리 로드합니다.

PreLoad(Type)

형식의 Type에 설정된 값을 바탕으로 지정된 SoapTypeAttribute을 미리 로드합니다.

PreLoad(Assembly)

각 형식과 관련된 Type에서 찾은 정보에서, 지정된 Assembly에서 찾은 모든 SoapTypeAttribute을 미리 로드합니다.

public:
 static void PreLoad(System::Reflection::Assembly ^ assembly);
public static void PreLoad (System.Reflection.Assembly assembly);
[System.Security.SecurityCritical]
public static void PreLoad (System.Reflection.Assembly assembly);
static member PreLoad : System.Reflection.Assembly -> unit
[<System.Security.SecurityCritical>]
static member PreLoad : System.Reflection.Assembly -> unit
Public Shared Sub PreLoad (assembly As Assembly)

매개 변수

assembly
Assembly

Assembly를 호출할 각 형식의 PreLoad(Type)입니다.

특성

예외

직접 실행 호출자에 인프라 권한이 없는 경우

예제

다음 코드 예제에서는 이 메서드를 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 SoapServices 클래스입니다.

// Register all types in the assembly with the SoapType attribute.
System::Reflection::Assembly^ executingAssembly =
   System::Reflection::Assembly::GetExecutingAssembly();
SoapServices::PreLoad( executingAssembly );
// Register all types in the assembly with the SoapType attribute.
System.Reflection.Assembly executingAssembly =
    System.Reflection.Assembly.GetExecutingAssembly();
SoapServices.PreLoad(executingAssembly);

설명

.NET Framework는 XML 스트림을 구문 분석 하는 경우 공용 언어 런타임 형식에는 스트림에서 읽은 XML을 변환 하는 방법을 알고 있어야 합니다. .NET Framework를 생성 하는 방법을 지정 하는 정보 및에 위치한 사용자 지정 특성에 저장 된 XML 스트림을 구문 분석 된 System.Runtime.Remoting.Metadata 네임 스페이스입니다. 구성 파일에서이 정보를 지정 하는 방법은 두 가지: 매핑을 명시적으로 지정 하거나 미리 로드 하는 개체 유형을 지정 하 여 합니다. 미리 로드 프로세스 중 사용자 지정 특성을 읽고 SOAP 파서의 정보를 제공 됩니다.

적용 대상

PreLoad(Type)

형식의 Type에 설정된 값을 바탕으로 지정된 SoapTypeAttribute을 미리 로드합니다.

public:
 static void PreLoad(Type ^ type);
public static void PreLoad (Type type);
[System.Security.SecurityCritical]
public static void PreLoad (Type type);
static member PreLoad : Type -> unit
[<System.Security.SecurityCritical>]
static member PreLoad : Type -> unit
Public Shared Sub PreLoad (type As Type)

매개 변수

type
Type

미리 로드할 Type입니다.

특성

예외

직접 실행 호출자에 인프라 권한이 없는 경우

예제

다음 코드 예제에서는 이 메서드를 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 SoapServices 클래스입니다.

// Register a specific type with the SoapType attribute.
Type^ exampleType = ExampleNamespace::ExampleClass::typeid;
SoapServices::PreLoad( exampleType );
// Register a specific type with the SoapType attribute.
Type exampleType = typeof(ExampleNamespace.ExampleClass);
SoapServices.PreLoad(exampleType);

설명

.NET Framework는 XML 스트림을 구문 분석 하는 경우 공용 언어 런타임 형식에는 스트림에서 읽은 XML을 변환 하는 방법을 알고 있어야 합니다. .NET Framework를 생성 하는 방법을 지정 하는 정보 및에 위치한 사용자 지정 특성에 저장 된 XML 스트림을 구문 분석 된 System.Runtime.Remoting.Metadata 네임 스페이스입니다. 구성 파일에서이 정보를 지정 하는 방법은 두 가지: 매핑을 명시적으로 지정 하거나 미리 로드 하는 개체 유형을 지정 하 여 합니다. 미리 로드 프로세스 중 사용자 지정 특성을 읽고 SOAP 파서의 정보를 제공 됩니다.

적용 대상