SoapHexBinary 類別
本文內容
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
包裝 XSD hexBinary
型別。
public ref class SoapHexBinary sealed : System::Runtime::Remoting::Metadata::W3cXsd2001::ISoapXsd
[System.Serializable]
public sealed class SoapHexBinary : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class SoapHexBinary : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[<System.Serializable>]
type SoapHexBinary = class
interface ISoapXsd
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type SoapHexBinary = class
interface ISoapXsd
Public NotInheritable Class SoapHexBinary
Implements ISoapXsd
- 繼承
-
SoapHexBinary
- 屬性
- 實作
下列程式代碼範例示範如何使用 類別中的SoapHexBinary成員,在物件與 XSD hexBinary
字串之間SoapHexBinary轉換。
#using <System.dll>
#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 SoapHexBinary object.
String^ xsdHexBinary = L"3f789ABC";
SoapHexBinary^ hexBinary = SoapHexBinary::Parse( xsdHexBinary );
// Print the value of the SoapHexBinary object in XSD format.
Console::WriteLine( L"The SoapHexBinary object in XSD format is {0}.",
hexBinary );
// Print the XSD type string of this particular SoapHexBinary object.
Console::WriteLine( L"The XSD type of the SoapHexBinary object is {0}.",
hexBinary->GetXsdType() );
// Print the value of the SoapHexBinary object.
Console::Write( L"hexBinary.Value contains:" );
for ( int i = 0; i < hexBinary->Value->Length; ++i )
{
Console::Write( L" {0}", hexBinary->Value[ i ] );
}
Console::WriteLine();
// Print the XSD type string of the SoapHexBinary class.
Console::WriteLine( L"The XSD type of the class SoapHexBinary is {0}.",
SoapHexBinary::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 SoapHexBinary object.
string xsdHexBinary = "3f789ABC";
SoapHexBinary hexBinary = SoapHexBinary.Parse(xsdHexBinary);
// Print the value of the SoapHexBinary object in XSD format.
Console.WriteLine("The SoapHexBinary object in XSD format is {0}.",
hexBinary.ToString());
// Print the XSD type string of this particular SoapHexBinary object.
Console.WriteLine(
"The XSD type of the SoapHexBinary object is {0}.",
hexBinary.GetXsdType());
// Print the value of the SoapHexBinary object.
Console.Write("hexBinary.Value contains:");
for (int i = 0 ; i < hexBinary.Value.Length ; ++i)
{
Console.Write(" " + hexBinary.Value[i]);
}
Console.WriteLine();
// Print the XSD type string of the SoapHexBinary class.
Console.WriteLine("The XSD type of the class SoapHexBinary is {0}.",
SoapHexBinary.XsdType);
}
}
如需 XSD 資料類型的詳細資訊,請參閱 XML 數據類型參考。
Soap |
初始化 SoapHexBinary 類別的新執行個體。 |
Soap |
初始化 SoapHexBinary 類別的新執行個體。 |
Equals(Object) |
判斷指定的物件是否等於目前的物件。 (繼承來源 Object) |
Get |
做為預設雜湊函式。 (繼承來源 Object) |
Get |
取得目前執行個體的 Type。 (繼承來源 Object) |
Get |
傳回目前 SOAP 型別的 XML 結構描述定義語言 (XSD)。 |
Memberwise |
建立目前 Object 的淺層複製。 (繼承來源 Object) |
Parse(String) |
將指定的 String 轉換成 SoapHexBinary 物件。 |
To |
產品 | 版本 |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |