SoapPositiveInteger Class
.NET Framework 3.0
Wraps an XSD positiveInteger type.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapPositiveInteger Implements ISoapXsd 'Usage Dim instance As SoapPositiveInteger
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class SoapPositiveInteger implements ISoapXsd
SerializableAttribute ComVisibleAttribute(true) public final class SoapPositiveInteger implements ISoapXsd
Not applicable.
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 SoapPositiveInteger class to convert between a SoapPositiveInteger object and an XSD positiveInteger 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 SoapPositiveInteger
// object.
String xsdIntegerString = "+13";
SoapPositiveInteger xsdInteger = SoapPositiveInteger.
Parse(xsdIntegerString);
// Print the value of the SoapPositiveInteger object in XSD format.
Console.WriteLine("The SoapPositiveInteger object in XSD format is {0}.",
xsdInteger.ToString());
// Print the XSD type string of the SoapPositiveInteger object.
Console.WriteLine("The XSD type of the SoapPositiveInteger "
+ "object is {0}.", xsdInteger.GetXsdType());
// Print the value of the SoapPositiveInteger object.
Console.WriteLine("The value of the SoapPositiveInteger object is {0}.",
xsdInteger.get_Value());
// Print the XSD type string of the SoapPositiveInteger class.
Console.WriteLine("The XSD type of the SoapPositiveInteger class "
+ "is {0}.", SoapPositiveInteger.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: