| PolymorphismSchemaForContextSpecifiedCollection Method | 
            	Creates a new instance of the 
PolymorphismSchema class for collection object which uses declared type or context specified concrete type.
            
 
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
 Syntax
Syntax[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static PolymorphismSchema ForContextSpecifiedCollection(
	Type targetType,
	PolymorphismSchema itemSchema
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Shared Function ForContextSpecifiedCollection ( 
	targetType As Type,
	itemSchema As PolymorphismSchema
) As PolymorphismSchema
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
static PolymorphismSchema^ ForContextSpecifiedCollection(
	Type^ targetType, 
	PolymorphismSchema^ itemSchema
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
static member ForContextSpecifiedCollection : 
        targetType : Type * 
        itemSchema : PolymorphismSchema -> PolymorphismSchema 
Parameters
- targetType
- Type: SystemType
 The type of the serialization target.
- itemSchema
- Type: MsgPack.SerializationPolymorphismSchema
 The schema for collection items of the serialization target collection.
Return Value
Type: 
PolymorphismSchemaA new instance of the 
PolymorphismSchema class for collection object which uses declared type or context specified concrete type.
 Exceptions
Exceptions See Also
See Also