MimeFormatter.GetInitializer Method

Definition

When overridden in a derived class, returns an initializer for the specified method.

Overloads

GetInitializer(LogicalMethodInfo)

When overridden in a derived class, returns an initializer for the specified method.

GetInitializer(Type, LogicalMethodInfo)

Returns an initializer for the specified method.

GetInitializer(LogicalMethodInfo)

When overridden in a derived class, returns an initializer for the specified method.

public:
 abstract System::Object ^ GetInitializer(System::Web::Services::Protocols::LogicalMethodInfo ^ methodInfo);
public abstract object GetInitializer (System.Web.Services.Protocols.LogicalMethodInfo methodInfo);
abstract member GetInitializer : System.Web.Services.Protocols.LogicalMethodInfo -> obj
Public MustOverride Function GetInitializer (methodInfo As LogicalMethodInfo) As Object

Parameters

methodInfo
LogicalMethodInfo

A LogicalMethodInfo that specifies the Web method for which the initializer is obtained.

Returns

An Object that contains the initializer for the specified method.

Remarks

An initializer is an object passed as a parameter to the Initialize method.

A derived class's implementation of the GetInitializer instance method is invoked during client or service initialization. Later, at the time a request or response is processed, the initializer object is passed to the static CreateInstance method, which creates an instance of another object of the derived class, and then to the Initialize method to initialize it. The other object performs the actual reading or writing.

Applies to

GetInitializer(Type, LogicalMethodInfo)

Returns an initializer for the specified method.

public:
 static System::Object ^ GetInitializer(Type ^ type, System::Web::Services::Protocols::LogicalMethodInfo ^ methodInfo);
public static object GetInitializer (Type type, System.Web.Services.Protocols.LogicalMethodInfo methodInfo);
static member GetInitializer : Type * System.Web.Services.Protocols.LogicalMethodInfo -> obj
Public Shared Function GetInitializer (type As Type, methodInfo As LogicalMethodInfo) As Object

Parameters

type
Type

The Type, derived from MimeFormatter,- for which an initializer is obtained.

methodInfo
LogicalMethodInfo

A LogicalMethodInfo that specifies the Web method for which the initializer is obtained.

Returns

A Object object that contains the initializer for the specified method.

Remarks

An initializer is an object passed as a parameter to the Initialize method.

The static GetInitializer method invokes the derived class's GetInitializer method, implicitly creating an instance of the derived class. At the time a request or response is processed, the initializer object is passed to the Initialize method of another instance of the derived class. The latter object performs the actual reading or writing.

Applies to