RemoteTypeData Struct

Definition

Provides information about a type that components can access across application domain and process boundaries.

public value class RemoteTypeData
[System.Serializable]
public struct RemoteTypeData
[<System.Serializable>]
type RemoteTypeData = struct
Public Structure RemoteTypeData
Inheritance
RemoteTypeData
Attributes

Remarks

The RemoteTypeData structure provides information about an object that implements the IRemoteObjectContract interface. To get type information about a remote object, components call the GetRemoteType method to obtain an IRemoteTypeContract. Then, components call the GetTypeData method to get a RemoteTypeData.

Fields

ArrayRank

Indicates the rank (that is, the number of dimensions) of the remote array type that this RemoteTypeData describes.

AssemblyName

Represents the full name of the assembly that contains the remote type that this RemoteTypeData describes.

AssemblyQualifiedName

Represents the name of the remote type that this RemoteTypeData describes, qualified by the name of the assembly that contains the type.

Attributes

Represents the attributes of the remote type that this RemoteTypeData describes.

BaseType

Represents the base type of the remote type that this RemoteTypeData describes.

ElementType

Represents the type of the elements in the remote array type that this RemoteTypeData describes.

FullName

Represents the name of the remote type that this RemoteTypeData describes, qualified by the namespace.

IsArray

Indicates whether this RemoteTypeData describes an array type.

IsByRef

Indicates whether this RemoteTypeData describes a type that is passed by reference.

MemberData

Represents member data for the remote type that this RemoteTypeData describes.

TypeCode

Represents the type of the remote type that this RemoteTypeData describes.

Applies to