SoapNegativeInteger 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XSD negativeInteger
형식을 래핑합니다.
public ref class SoapNegativeInteger sealed : System::Runtime::Remoting::Metadata::W3cXsd2001::ISoapXsd
[System.Serializable]
public sealed class SoapNegativeInteger : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class SoapNegativeInteger : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[<System.Serializable>]
type SoapNegativeInteger = class
interface ISoapXsd
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type SoapNegativeInteger = class
interface ISoapXsd
Public NotInheritable Class SoapNegativeInteger
Implements ISoapXsd
- 상속
-
SoapNegativeInteger
- 특성
- 구현
예제
다음 코드 예제에서 멤버를 사용 하는 방법을 보여 줍니다 합니다 SoapNegativeInteger 간을 변환 하는 클래스를 SoapNegativeInteger 개체와 XSD negativeInteger
문자열입니다.
#using <System.Runtime.Remoting.dll>
using namespace System;
using namespace System::Runtime::Remoting::Metadata::W3cXsd2001;
int main()
{
// Parse an XSD formatted string to create a SoapNegativeInteger
// object.
String^ xsdIntegerString = L"-13";
SoapNegativeInteger^ xsdInteger = SoapNegativeInteger::Parse(
xsdIntegerString );
// Print the value of the SoapNegativeInteger object in XSD format.
Console::WriteLine( L"The SoapNegativeInteger object in XSD format is {0}.",
xsdInteger );
// Print the XSD type string of the SoapNegativeInteger object.
Console::WriteLine( L"The XSD type of the SoapNegativeInteger "
L"object is {0}.", xsdInteger->GetXsdType() );
// Print the value of the SoapNegativeInteger object.
Console::WriteLine( L"The value of the SoapNegativeInteger "
L"object is {0}.", xsdInteger->Value );
// Print the XSD type string of the SoapNegativeInteger class.
Console::WriteLine( L"The XSD type of the SoapNegativeInteger class "
L"is {0}.", SoapNegativeInteger::XsdType );
}
using System;
using 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.Value);
// Print the XSD type string of the SoapNegativeInteger class.
Console.WriteLine(
"The XSD type of the SoapNegativeInteger class " +
"is {0}.", SoapNegativeInteger.XsdType);
}
}
설명
XSD 데이터 형식에 대한 자세한 내용은 XML 데이터 형식 참조를 참조하세요.
생성자
SoapNegativeInteger() |
SoapNegativeInteger 클래스의 새 인스턴스를 초기화합니다. |
SoapNegativeInteger(Decimal) |
SoapNegativeInteger 값을 사용하여 Decimal 클래스의 새 인스턴스를 초기화합니다. |
속성
Value |
현재 인스턴스의 숫자 값을 가져오거나 설정합니다. |
XsdType |
현재 SOAP 형식의 XSD(XML Schema Definition Language)를 가져옵니다. |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
GetXsdType() |
현재 SOAP 형식의 XSD(XML Schema Definition Language)를 반환합니다. |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
Parse(String) |
지정된 String을 SoapNegativeInteger 개체로 변환합니다. |
ToString() |
적용 대상
.NET