다음을 통해 공유


SoapAnyUri.Parse(String) 메서드

정의

지정된 StringSoapAnyUri 개체로 변환합니다.

public:
 static System::Runtime::Remoting::Metadata::W3cXsd2001::SoapAnyUri ^ Parse(System::String ^ value);
public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri Parse (string value);
static member Parse : string -> System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri
Public Shared Function Parse (value As String) As SoapAnyUri

매개 변수

value
String

변환할 String입니다.

반환

value에서 가져온 SoapAnyUri 개체입니다.

예제

다음 코드 예제에서는 Parse 메서드를 사용하는 방법을 보여 줍니다. 이 코드 예제는 제공 된 큰 예제의 일부는 SoapAnyUri 클래스입니다.

// Parse an XSD formatted string to create a SoapAnyUri object.
String^ xsdAnyUri = L"http://localhost:8080/WebService";
SoapAnyUri^ anyUri = SoapAnyUri::Parse( xsdAnyUri );
// Parse an XSD formatted string to create a SoapAnyUri object.
string xsdAnyUri = "http://localhost:8080/WebService";
SoapAnyUri anyUri = SoapAnyUri.Parse(xsdAnyUri);

적용 대상