WebReference.Warnings 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
WSDL(웹 서비스 설명 언어) 서비스 설명 문서를 가져올 때 생성되는 경고 컬렉션을 가져옵니다.
public:
property System::Web::Services::Description::ServiceDescriptionImportWarnings Warnings { System::Web::Services::Description::ServiceDescriptionImportWarnings get(); void set(System::Web::Services::Description::ServiceDescriptionImportWarnings value); };
public System.Web.Services.Description.ServiceDescriptionImportWarnings Warnings { get; set; }
member this.Warnings : System.Web.Services.Description.ServiceDescriptionImportWarnings with get, set
Public Property Warnings As ServiceDescriptionImportWarnings
속성 값
WSDL 서비스 설명 문서를 가져올 때 생성되는 ServiceDescriptionImportWarnings 경고 컬렉션입니다.
예제
다음 코드 예제에서는 Warnings 속성을 사용하는 방법을 보여 줍니다.
// Read in a WSDL service description.
string url = "http://www.contoso.com/Example/WebService.asmx?WSDL";
XmlTextReader reader = new XmlTextReader(url);
ServiceDescription wsdl = ServiceDescription.Read(reader);
// Create a WSDL collection.
DiscoveryClientDocumentCollection wsdlCollection =
new DiscoveryClientDocumentCollection();
wsdlCollection.Add(url, wsdl);
// Create a namespace.
CodeNamespace proxyNamespace = new CodeNamespace("ExampleNamespace");
// Create a web reference using the WSDL collection.
string baseUrl = "http://www.contoso.com";
string urlKey = "ExampleUrlKey";
string protocolName = "Soap12";
WebReference reference = new WebReference(
wsdlCollection, proxyNamespace, protocolName, urlKey, baseUrl);
// Print some information about the web reference.
Console.WriteLine("The WebReference object contains {0} document(s).",
reference.Documents.Count);
Console.WriteLine("The protocol name is {0}.", reference.ProtocolName);
Console.WriteLine("The base URL is {0}.", reference.AppSettingBaseUrl);
Console.WriteLine("The URL key is {0}.", reference.AppSettingUrlKey);
// Print some information about the proxy code namespace.
Console.WriteLine("The proxy code namespace is {0}.",
reference.ProxyCode.Name);
// Print some information about the validation warnings.
Console.WriteLine("There are {0} validation warnings.",
reference.ValidationWarnings.Count);
// Print some information about the warnings.
if (reference.Warnings == 0)
{
Console.WriteLine("There are no warnings.");
}
else
{
Console.WriteLine("Warnings: " + reference.Warnings);
}