EndpointAddress.ReadFrom 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 XML 판독기에서 엔드포인트 주소를 읽습니다.
오버로드
ReadFrom(XmlDictionaryReader) |
지정된 XML 사전 판독기에서 엔드포인트 주소를 읽습니다. |
ReadFrom(AddressingVersion, XmlDictionaryReader) |
지정된 XML 사전 판독기에서 지정된 주소 버전의 엔드포인트 주소를 읽습니다. |
ReadFrom(AddressingVersion, XmlReader) |
지정된 XML 판독기에서 지정된 주소 버전의 엔드포인트 주소를 읽습니다. |
ReadFrom(XmlDictionaryReader, XmlDictionaryString, XmlDictionaryString) |
지정된 XML 사전 판독기에서 지정된 정규화된 이름의 엔드포인트 주소를 읽습니다. |
ReadFrom(AddressingVersion, XmlDictionaryReader, XmlDictionaryString, XmlDictionaryString) |
지정된 XML 사전 판독기에서 지정된 정규화된 이름을 가진 지정된 주소 버전의 엔드포인트 주소를 읽습니다. |
ReadFrom(AddressingVersion, XmlReader, String, String) |
지정된 XML 판독기에서 지정된 정규화된 이름을 가진 지정된 주소 버전의 엔드포인트 주소를 읽습니다. |
ReadFrom(XmlDictionaryReader)
- Source:
- EndpointAddress.cs
- Source:
- EndpointAddress.cs
- Source:
- EndpointAddress.cs
지정된 XML 사전 판독기에서 엔드포인트 주소를 읽습니다.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::Xml::XmlDictionaryReader ^ reader);
public static System.ServiceModel.EndpointAddress ReadFrom (System.Xml.XmlDictionaryReader reader);
static member ReadFrom : System.Xml.XmlDictionaryReader -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (reader As XmlDictionaryReader) As EndpointAddress
매개 변수
- reader
- XmlDictionaryReader
엔드포인트 주소를 가져올 XmlDictionaryReader.
반환
XML 사전 판독기에서 읽은 EndpointAddress.
예제
다음 코드는 XML 사전 판독기에서 엔드포인트 주소를 읽는 방법을 보여줍니다.
XmlDictionaryReader reader = (XmlDictionaryReader) XmlDictionaryReader.Create("addressdata.xml");
EndpointAddress createdEA = EndpointAddress.ReadFrom(reader);
적용 대상
ReadFrom(AddressingVersion, XmlDictionaryReader)
- Source:
- EndpointAddress.cs
- Source:
- EndpointAddress.cs
- Source:
- EndpointAddress.cs
지정된 XML 사전 판독기에서 지정된 주소 버전의 엔드포인트 주소를 읽습니다.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlDictionaryReader ^ reader);
public static System.ServiceModel.EndpointAddress ReadFrom (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlDictionaryReader reader);
static member ReadFrom : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlDictionaryReader -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (addressingVersion As AddressingVersion, reader As XmlDictionaryReader) As EndpointAddress
매개 변수
- addressingVersion
- AddressingVersion
현재 엔드포인트 주소의 AddressingVersion.
- reader
- XmlDictionaryReader
엔드포인트 주소를 가져올 XmlDictionaryReader.
반환
XML 사전 판독기에서 읽은 EndpointAddress.
예제
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader dictReader = XmlDictionaryReader.CreateDictionaryReader(reader);
EndpointAddress createdEA = EndpointAddress.ReadFrom
(AddressingVersion.WSAddressing10,
dictReader);
적용 대상
ReadFrom(AddressingVersion, XmlReader)
지정된 XML 판독기에서 지정된 주소 버전의 엔드포인트 주소를 읽습니다.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlReader ^ reader);
public static System.ServiceModel.EndpointAddress ReadFrom (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlReader reader);
static member ReadFrom : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlReader -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (addressingVersion As AddressingVersion, reader As XmlReader) As EndpointAddress
매개 변수
- addressingVersion
- AddressingVersion
현재 엔드포인트 주소의 AddressingVersion.
반환
XML 판독기에서 읽은 EndpointAddress.
예제
다음 코드는 XML 사전 판독기에서 엔드포인트 주소에서 읽는 방법을 보여 있습니다.
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader dictReader = XmlDictionaryReader.CreateDictionaryReader(reader);
EndpointAddress createdEA = EndpointAddress.ReadFrom
(AddressingVersion.WSAddressing10,
dictReader,
"EndpointReference",
"http://www.w3.org/2005/08/addressing");
적용 대상
ReadFrom(XmlDictionaryReader, XmlDictionaryString, XmlDictionaryString)
지정된 XML 사전 판독기에서 지정된 정규화된 이름의 엔드포인트 주소를 읽습니다.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::Xml::XmlDictionaryReader ^ reader, System::Xml::XmlDictionaryString ^ localName, System::Xml::XmlDictionaryString ^ ns);
public static System.ServiceModel.EndpointAddress ReadFrom (System.Xml.XmlDictionaryReader reader, System.Xml.XmlDictionaryString localName, System.Xml.XmlDictionaryString ns);
static member ReadFrom : System.Xml.XmlDictionaryReader * System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (reader As XmlDictionaryReader, localName As XmlDictionaryString, ns As XmlDictionaryString) As EndpointAddress
매개 변수
- reader
- XmlDictionaryReader
엔드포인트 주소를 가져올 XmlDictionaryReader.
- localName
- XmlDictionaryString
엔드포인트 주소를 포함할 XML 노드의 로컬 이름을 포함하는 XmlDictionaryString.
엔드포인트 주소를 포함할 XML 노드의 네임스페이스를 포함하는 XmlDictionaryString.
반환
XML 사전 판독기에서 읽은 정규화된 이름의 EndpointAddress.
예제
다음 코드는 XML 사전 판독기에서 엔드포인트 주소에서 읽는 방법을 보여 있습니다.
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader dictReader = XmlDictionaryReader.CreateDictionaryReader(reader);
XmlDictionaryString xdLocalName = new XmlDictionaryString(XmlDictionary.Empty, "EndpointReference",0);
XmlDictionaryString xdNamespace = new XmlDictionaryString(XmlDictionary.Empty, "http://www.w3.org/2005/08/addressing", 0);
EndpointAddress createdEA = EndpointAddress.ReadFrom(dictReader, xdLocalName, xdNamespace);
적용 대상
ReadFrom(AddressingVersion, XmlDictionaryReader, XmlDictionaryString, XmlDictionaryString)
- Source:
- EndpointAddress.cs
- Source:
- EndpointAddress.cs
- Source:
- EndpointAddress.cs
지정된 XML 사전 판독기에서 지정된 정규화된 이름을 가진 지정된 주소 버전의 엔드포인트 주소를 읽습니다.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlDictionaryReader ^ reader, System::Xml::XmlDictionaryString ^ localName, System::Xml::XmlDictionaryString ^ ns);
public static System.ServiceModel.EndpointAddress ReadFrom (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlDictionaryReader reader, System.Xml.XmlDictionaryString localName, System.Xml.XmlDictionaryString ns);
static member ReadFrom : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlDictionaryReader * System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (addressingVersion As AddressingVersion, reader As XmlDictionaryReader, localName As XmlDictionaryString, ns As XmlDictionaryString) As EndpointAddress
매개 변수
- addressingVersion
- AddressingVersion
현재 엔드포인트 주소의 AddressingVersion.
- reader
- XmlDictionaryReader
엔드포인트 주소를 가져올 XmlDictionaryReader.
- localName
- XmlDictionaryString
엔드포인트 주소를 포함할 XML 노드의 로컬 이름을 포함합니다.
엔드포인트 주소를 포함할 XML 노드의 네임스페이스를 포함합니다.
반환
XML 판독기에서 읽은 정규화된 이름의 EndpointAddress.
예제
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader xReader = XmlDictionaryReader.CreateDictionaryReader(reader);
// Create an XmlDictionary and add values to it.
XmlDictionary d = new XmlDictionary();
XmlDictionaryString xdLocalName = new XmlDictionaryString(XmlDictionary.Empty, "EndpointReference",0);
XmlDictionaryString xdNamespace = new XmlDictionaryString(XmlDictionary.Empty, "http://www.w3.org/2005/08/addressing", 0);
EndpointAddress createdEA = EndpointAddress.ReadFrom
(AddressingVersion.WSAddressing10,
xReader,
xdLocalName,
xdNamespace
);
적용 대상
ReadFrom(AddressingVersion, XmlReader, String, String)
지정된 XML 판독기에서 지정된 정규화된 이름을 가진 지정된 주소 버전의 엔드포인트 주소를 읽습니다.
public:
static System::ServiceModel::EndpointAddress ^ ReadFrom(System::ServiceModel::Channels::AddressingVersion ^ addressingVersion, System::Xml::XmlReader ^ reader, System::String ^ localName, System::String ^ ns);
public static System.ServiceModel.EndpointAddress ReadFrom (System.ServiceModel.Channels.AddressingVersion addressingVersion, System.Xml.XmlReader reader, string localName, string ns);
static member ReadFrom : System.ServiceModel.Channels.AddressingVersion * System.Xml.XmlReader * string * string -> System.ServiceModel.EndpointAddress
Public Shared Function ReadFrom (addressingVersion As AddressingVersion, reader As XmlReader, localName As String, ns As String) As EndpointAddress
매개 변수
- addressingVersion
- AddressingVersion
현재 엔드포인트 주소의 AddressingVersion.
- localName
- String
엔드포인트 주소를 포함할 XML 노드의 로컬 이름을 포함합니다.
- ns
- String
엔드포인트 주소를 포함할 XML 노드의 네임스페이스를 포함합니다.
반환
XML 판독기에서 읽은 정규화된 이름의 EndpointAddress.
예제
XmlReader reader = XmlReader.Create("addressdata.xml");
XmlDictionaryReader xReader = XmlDictionaryReader.CreateDictionaryReader(reader);
// Create an XmlDictionary and add values to it.
XmlDictionary d = new XmlDictionary();
XmlDictionaryString xdLocalName = new XmlDictionaryString(XmlDictionary.Empty, "EndpointReference",0);
XmlDictionaryString xdNamespace = new XmlDictionaryString(XmlDictionary.Empty, "http://www.w3.org/2005/08/addressing", 0);
EndpointAddress createdEA = EndpointAddress.ReadFrom
(AddressingVersion.WSAddressing10,
xReader,
xdLocalName,
xdNamespace
);
적용 대상
.NET