SerializationInfo.GetSByte(String) Method

Definition

Important

This API is not CLS-compliant.

Retrieves an 8-bit signed integer value from the SerializationInfo store.

public:
 System::SByte GetSByte(System::String ^ name);
[System.CLSCompliant(false)]
public sbyte GetSByte (string name);
[<System.CLSCompliant(false)>]
member this.GetSByte : string -> sbyte
Public Function GetSByte (name As String) As SByte

Parameters

name
String

The name associated with the value to retrieve.

Returns

The 8-bit signed integer associated with name.

Attributes

Exceptions

name is null.

The value associated with name cannot be converted to an 8-bit signed integer.

An element with the specified name is not found in the current instance.

Remarks

If the value is an Int8, or can be converted to an Int8, that value is returned; otherwise, a InvalidCastException is thrown. All conversions are done by the IFormatterConverter associated with this SerializationInfo.

Applies to