SoapNonPositiveInteger Class
.NET Framework 3.0
Wraps an XSD nonPositiveInteger type.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapNonPositiveInteger Implements ISoapXsd 'Usage Dim instance As SoapNonPositiveInteger
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class SoapNonPositiveInteger implements ISoapXsd
SerializableAttribute ComVisibleAttribute(true) public final class SoapNonPositiveInteger implements ISoapXsd
Not applicable.
For more information about XSD data types, see "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 SoapNonPositiveInteger class to convert between a SoapNonPositiveInteger object and an XSD nonPositiveInteger 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 SoapNonPositiveInteger
// object.
String xsdIntegerString = "-13";
SoapNonPositiveInteger xsdInteger = SoapNonPositiveInteger.
Parse(xsdIntegerString);
// Print the value of the SoapNonPositiveInteger object
// in XSD format.
Console.WriteLine("The SoapNonPositiveInteger object in XSD "
+ "format is {0}.", xsdInteger.ToString());
// Print the XSD type string of the SoapNonPositiveInteger object.
Console.WriteLine("The XSD type of the SoapNonPositiveInteger "
+ "object is {0}.", xsdInteger.GetXsdType());
// Print the value of the SoapNonPositiveInteger object.
Console.WriteLine("The value of the SoapNonPositiveInteger "
+ "object is {0}.", xsdInteger.get_Value());
// Print the XSD type string of the SoapNonPositiveInteger class.
Console.WriteLine("The XSD type of the SoapNonPositiveInteger class "
+ "is {0}.", SoapNonPositiveInteger.get_XsdType());
} //main
} //Demo
Windows 98, Windows Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: