Freigeben über


SoapServices.GetXmlElementForInteropType-Methode

Gibt Informationen über das XML-Element zurück, die bei der Serialisierung des angegebenen Typs verwendet werden.

Namespace: System.Runtime.Remoting
Assembly: mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Shared Function GetXmlElementForInteropType ( _
    type As Type, _
    <OutAttribute> ByRef xmlElement As String, _
    <OutAttribute> ByRef xmlNamespace As String _
) As Boolean
'Usage
Dim type As Type
Dim xmlElement As String
Dim xmlNamespace As String
Dim returnValue As Boolean

returnValue = SoapServices.GetXmlElementForInteropType(type, xmlElement, xmlNamespace)
public static bool GetXmlElementForInteropType (
    Type type,
    out string xmlElement,
    out string xmlNamespace
)
public:
static bool GetXmlElementForInteropType (
    Type^ type, 
    [OutAttribute] String^% xmlElement, 
    [OutAttribute] String^% xmlNamespace
)
public static boolean GetXmlElementForInteropType (
    Type type, 
    /** @attribute OutAttribute() */ /** @ref */ String xmlElement, 
    /** @attribute OutAttribute() */ /** @ref */ String xmlNamespace
)
JScript unterstützt die Übergabe von Werttypargumenten als Verweis nicht.

Parameter

  • type
    Der Objekt-Type, für den die Namen des XML-Elements und -Namespaces angefordert wurden.
  • xmlElement
    Enthält nach dem Beenden der Methode einen String mit dem XML-Elementnamen des angegebenen Objekttyps. Dieser Parameter wird nicht initialisiert übergeben.
  • xmlNamespace
    Enthält nach dem Beenden der Methode einen String mit dem XML-Namespacenamen des angegebenen Objekttyps. Dieser Parameter wird nicht initialisiert übergeben.

Rückgabewert

true, wenn die angeforderten Werte beim Festlegen mit SoapTypeAttribute gekennzeichnet wurden, andernfalls false.

Ausnahmen

Ausnahmetyp Bedingung

SecurityException

Der direkte Aufrufer verfügt nicht über die Berechtigung für die Infrastruktur.

Beispiel

Im folgenden Codebeispiel wird die Verwendung dieser Methode veranschaulicht. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die SoapServices-Klasse.

// Get the XML element name and the XML namespace for 
// an Interop type.
string xmlElement;
bool isSoapTypeAttribute =
    SoapServices.GetXmlElementForInteropType(
    typeof(ExampleNamespace.ExampleClass), 
    out xmlElement, out xmlNamespace);

// Print whether the requested value was flagged 
// with a SoapTypeAttribute.
if (isSoapTypeAttribute)
{
    Console.WriteLine(
        "The requested value was flagged " +
        "with the SoapTypeAttribute.");
}
else 
{
    Console.WriteLine(
        "The requested value was not flagged " +
        "with the SoapTypeAttribute.");
}

// Print the XML element and the XML namespace.
Console.WriteLine(
    "The XML element for the type " +
    "ExampleNamespace.ExampleClass is {0}.",
    xmlElement);
Console.WriteLine(
    "The XML namespace for the type " +
    "ExampleNamespace.ExampleClass is {0}.",
    xmlNamespace);
// Get the XML element name and the XML namespace for
// an Interop type.
String^ xmlElement;
bool isSoapTypeAttribute = SoapServices::GetXmlElementForInteropType(
   ExampleNamespace::ExampleClass::typeid,xmlElement,xmlNamespace );

// Print whether the requested value was flagged
// with a SoapTypeAttribute.
if ( isSoapTypeAttribute )
{
   Console::WriteLine( L"The requested value was flagged "
   L"with the SoapTypeAttribute." );
}
else
{
   Console::WriteLine( L"The requested value was not flagged "
   L"with the SoapTypeAttribute." );
}

// Print the XML element and the XML namespace.
Console::WriteLine( L"The XML element for the type "
L"ExampleNamespace.ExampleClass is {0}.", xmlElement );
Console::WriteLine( L"The XML namespace for the type "
L"ExampleNamespace.ExampleClass is {0}.", xmlNamespace );
// Get the XML element name and the XML namespace for 
// an Interop type.
String xmlElement = "";
boolean isSoapTypeAttribute = SoapServices.GetXmlElementForInteropType(
    ExampleNamespace.ExampleClass.class.ToType(), xmlElement, 
    xmlNamespace);
// Print whether the requested value was flagged 
// with a SoapTypeAttribute.
if (isSoapTypeAttribute) {
    Console.WriteLine("The requested value was flagged " 
        + "with the SoapTypeAttribute.");
}
else {
    Console.WriteLine("The requested value was not flagged " 
        + "with the SoapTypeAttribute.");
}
// Print the XML element and the XML namespace.
Console.WriteLine("The XML element for the type " 
    + "ExampleNamespace.ExampleClass is {0}.", xmlElement);
Console.WriteLine("The XML namespace for the type " 
    + "ExampleNamespace.ExampleClass is {0}.", xmlNamespace);

.NET Framework-Sicherheit

Plattformen

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

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

SoapServices-Klasse
SoapServices-Member
System.Runtime.Remoting-Namespace
GetInteropFieldTypeAndNameFromXmlElement