SoapNegativeInteger Class
.NET Framework 2.0
Wraps an XSD negativeInteger type.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapNegativeInteger Implements ISoapXsd 'Usage Dim instance As SoapNegativeInteger
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class SoapNegativeInteger implements ISoapXsd
SerializableAttribute ComVisibleAttribute(true) public final class SoapNegativeInteger implements ISoapXsd
For more information about XSD data types, see the "XML Data Types Reference" in the MSDN Library at http://msdn.microsoft.com/library.
The following code example shows how to use the members in the SoapNegativeInteger class to convert between a SoapNegativeInteger object and an XSD negativeInteger string.
import System.*;
import System.Runtime.Remoting.Metadata.W3cXsd2001.*;
public class Demo
{
public static void main(String[] args)
{
// Parse an XSD formatted string to create a SoapNegativeInteger
// object.
String xsdIntegerString = "-13";
SoapNegativeInteger xsdInteger = SoapNegativeInteger.
Parse(xsdIntegerString);
// Print the value of the SoapNegativeInteger object in XSD format.
Console.WriteLine("The SoapNegativeInteger object in XSD format is {0}.",
xsdInteger.ToString());
// Print the XSD type string of the SoapNegativeInteger object.
Console.WriteLine("The XSD type of the SoapNegativeInteger "
+ "object is {0}.", xsdInteger.GetXsdType());
// Print the value of the SoapNegativeInteger object.
Console.WriteLine("The value of the SoapNegativeInteger "
+ "object is {0}.", xsdInteger.get_Value());
// Print the XSD type string of the SoapNegativeInteger class.
Console.WriteLine("The XSD type of the SoapNegativeInteger class "
+ "is {0}.", SoapNegativeInteger.get_XsdType());
} //main
} //Demo
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: