Method | Description | |
---|---|---|
NewCreateInstanceIsNotSupported ( |
Returns a new exception which represents
|
|
NewFailedToDeserializeMember ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that it is failed to deserialize member.
|
|
NewIsIncorrectStream ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that the underlying stream is not correct semantically because failed to unpack items count of array/map.
|
|
NewIsTooLargeCollection ( ) : |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that the unpacking collection is too large to represents in the current runtime environment.
|
|
NewMissingAddMethod ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that target collection type does not declare appropriate Add(T) method.
|
|
NewMissingProperty ( string name ) : |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that required field is not found on the unpacking stream.
|
|
NewNotSupportedBecauseCannotInstanciateAbstractType ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that operation is not supported because type cannot be instanciated.
|
|
NewNullIsProhibited ( string memberName ) : |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that the member cannot be
|
|
NewReadOnlyMemberItemsMustNotBeNull ( string memberName ) : |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that the unpacking value cannot be nil because the target member is read only and its type is collection.
|
|
NewStreamDoesNotContainCollectionForMember ( string memberName ) : |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that the unpacking collection value is not a collection.
|
|
NewTypeCannotDeserialize ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that value type cannot deserialize.
|
|
NewTypeCannotDeserialize ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that value type cannot deserialize.
|
|
NewTypeCannotSerialize ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that value type cannot serialize.
|
|
NewUnexpectedArrayLength ( int expectedLength, int actualLength ) : |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that the unpacking array size is not expected length.
|
|
NewUnpackFromIsNotSupported ( |
Returns a new exception which represents
|
|
NewValueTypeCannotBeNull ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that value type cannot be
|
|
NewValueTypeCannotBeNull ( string name, |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that value type cannot be
|
|
ThrowIsNotArrayHeader ( Unpacker unpacker ) : void |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Throws an exception to notify that unpacker is not in the array header, that is the state is invalid.
|
|
ThrowIsNotMapHeader ( Unpacker unpacker ) : void |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Throws an exception to notify that unpacker is not in the map header, that is the state is invalid.
|
|
ThrowMissingItem ( int index, Unpacker unpacker ) : void |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Throws a exception to notify that item is not found on the unpacking stream.
|
|
ThrowMissingItem ( int index, string name, Unpacker unpacker ) : void |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Throws a exception to notify that item is not found on the unpacking stream.
|
|
ThrowNullIsProhibited ( string memberName ) : void |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Throws an exception to notify that the member cannot be
|
|
ThrowTupleCardinarityIsNotMatch ( int expectedTupleCardinality, long actualArrayLength, Unpacker unpacker ) : void |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Throws an exception to notify that the array length does not match to expected tuple cardinality.
|
|
ThrowValueTypeCannotBeNull ( string name, |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Throws an exception to notify that value type cannot be
|
Method | Description | |
---|---|---|
NewIncompatibleCollectionSerializer ( |
||
NewIsNotArrayHeader ( ) : |
||
NewIsNotMapHeader ( ) : |
||
NewMissingItem ( int index ) : |
||
NewTargetDoesNotHavePublicDefaultConstructor ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that target type is not serializable because it does not have public default constructor.
|
|
NewTargetDoesNotHavePublicDefaultConstructorNorInitialCapacity ( |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that target type is not serializable because it does not have both of public default constructor and public constructor with an Int32 parameter.
|
|
NewTupleCardinarityIsNotMatch ( int expectedTupleCardinality, int actualArrayLength ) : |
||
NewUnexpectedEndOfStream ( ) : |
||
NewUnknownTypeEmbedding ( ) : |
||
NewUnpackToIsNotSupported ( |
||
NewValueTypeCannotBePolymorphic ( |
||
ThrowArgumentCannotBeNegativeException ( string parameterName ) : void | ||
ThrowArgumentCannotBeNegativeException ( string parameterName, string fieldName ) : void | ||
ThrowArgumentException ( string parameterName, string message ) : void | ||
ThrowArgumentNullException ( string parameterName ) : void | ||
ThrowArgumentNullException ( string parameterName, string fieldName ) : void | ||
ThrowFailedToDeserializeMember ( |
Throws an exception to notify that it is failed to deserialize member.
|
|
ThrowInvalidArrayItemsCount ( Unpacker unpacker, |
||
ThrowIsIncorrectStream ( |
||
ThrowIsTooLargeCollection ( ) : void | ||
ThrowMissingKey ( int index, Unpacker unpacker ) : void | ||
ThrowMissingProperty ( string name ) : void | ||
ThrowSerializationException ( string message ) : void | ||
ThrowSerializationException ( string message, |
||
ThrowTargetDoesNotHavePublicDefaultConstructorNorInitialCapacity ( |
||
ThrowUnexpectedEndOfStream ( Unpacker unpacker ) : void |
public static NewCreateInstanceIsNotSupported ( |
||
targetType | Deserializing type. | |
return |
public static NewFailedToDeserializeMember ( |
||
targetType | Deserializing type. | |
memberName | string | The name of the deserializing member. |
inner | The exception which caused current error. | |
return |
public static NewIsIncorrectStream ( |
||
innerException | The inner exception for the debug. The value is implementation specific. | |
return |
public static NewIsTooLargeCollection ( ) : |
||
return |
public static NewMissingAddMethod ( |
||
type | The target type. | |
return |
public static NewMissingProperty ( string name ) : |
||
name | string | The name of the property. |
return |
public static NewNotSupportedBecauseCannotInstanciateAbstractType ( |
||
type | Type. | |
return |
public static NewNullIsProhibited ( string memberName ) : |
||
memberName | string | The name of the member. |
return |
public static NewReadOnlyMemberItemsMustNotBeNull ( string memberName ) : |
||
memberName | string | The name of the member. |
return |
public static NewStreamDoesNotContainCollectionForMember ( string memberName ) : |
||
memberName | string | The name of the member. |
return |
public static NewTypeCannotDeserialize ( |
||
type | The target type. | |
return |
public static NewTypeCannotDeserialize ( |
||
type | The target type. | |
memberName | string | The name of deserializing member. |
inner | The inner exception. | |
return |
public static NewTypeCannotSerialize ( |
||
type | The target type. | |
return |
public static NewUnexpectedArrayLength ( int expectedLength, int actualLength ) : |
||
expectedLength | int | Expected, required for deserialization array length. |
actualLength | int | Actual array length. |
return |
public static NewUnpackFromIsNotSupported ( |
||
targetType | Deserializing type. | |
return |
public static NewValueTypeCannotBeNull ( |
||
type | The target type. | |
return |
public static NewValueTypeCannotBeNull ( string name, |
||
name | string | The name of the member. |
memberType | The type of the member. | |
declaringType | The type that declares the member. | |
return |
public static ThrowIsNotArrayHeader ( Unpacker unpacker ) : void | ||
unpacker | Unpacker | The unpacker for pretty message. |
return | void |
public static ThrowIsNotMapHeader ( Unpacker unpacker ) : void | ||
unpacker | Unpacker | The unpacker for pretty message. |
return | void |
public static ThrowMissingItem ( int index, Unpacker unpacker ) : void | ||
index | int | The index to be unpacking. |
unpacker | Unpacker | The unpacker for pretty message. |
return | void |
public static ThrowMissingItem ( int index, string name, Unpacker unpacker ) : void | ||
index | int | The index to be unpacking. |
name | string | The name of the item to be unpacking. |
unpacker | Unpacker | The unpacker for pretty message. |
return | void |
public static ThrowNullIsProhibited ( string memberName ) : void | ||
memberName | string | The name of the member. |
return | void |
public static ThrowTupleCardinarityIsNotMatch ( int expectedTupleCardinality, long actualArrayLength, Unpacker unpacker ) : void | ||
expectedTupleCardinality | int | The expected cardinality of the tuple. |
actualArrayLength | long | The actual serialized array length. |
unpacker | Unpacker | The unpacker for pretty message. |
return | void |
public static ThrowValueTypeCannotBeNull ( string name, |
||
name | string | The name of the member. |
memberType | The type of the member. | |
declaringType | The type that declares the member. | |
return | void |