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 object GetInitializer(System.Web.Services.Protocols.LogicalMethodInfo methodInfo);

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

.NET Framework 4.8.1 a další verze
Produkt Verze
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

GetInitializer(Type, LogicalMethodInfo)

Returns an initializer for the specified method.

public static object GetInitializer(Type type, System.Web.Services.Protocols.LogicalMethodInfo methodInfo);

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

.NET Framework 4.8.1 a další verze
Produkt Verze
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1