4 instantiations of DiscoveryDocument
System.Web.Services (4)
System\Web\Services\Discovery\DiscoveryClientProtocol.cs (1)
212DiscoveryDocument doc = new DiscoveryDocument();
System\Web\Services\Discovery\DiscoveryDocumentSerializer.cs (1)
174o = new global::System.Web.Services.Discovery.DiscoveryDocument();
System\Web\Services\Discovery\DynamicDiscoSearcher.cs (1)
34protected DiscoveryDocument discoDoc = new DiscoveryDocument();
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (1)
91discoDoc = new DiscoveryDocument();
41 references to DiscoveryDocument
System.Web.Extensions (6)
Compilation\WCFModel\MetadataFile.cs (5)
284public Discovery.DiscoveryDocument MetadataDiscoveryDocument 629cachedMetadata = new MetadataContent(Discovery.DiscoveryDocument.Read(xmlReader)); 763private Discovery.DiscoveryDocument m_MetadataDiscoveryDocument; 777internal MetadataContent(Discovery.DiscoveryDocument discoveryDocument) 811public Discovery.DiscoveryDocument MetadataDiscoveryDocument
Compilation\WCFModel\XmlStrings.cs (1)
27internal const string NamespaceUri = System.Web.Services.Discovery.DiscoveryDocument.Namespace;
System.Web.Services (35)
System\Web\Services\Configuration\WebServicesSection.cs (1)
105attrOverrides.Add(typeof(DiscoveryDocument), "References", attrs);
System\Web\Services\Discovery\DiscoveryClientProtocol.cs (5)
103public DiscoveryDocument Discover(string url) { 104DiscoveryDocument doc = Documents[url] as DiscoveryDocument; 122public DiscoveryDocument DiscoverAny(string url) { 212DiscoveryDocument doc = new DiscoveryDocument();
System\Web\Services\Discovery\DiscoveryDocument.cs (5)
21[XmlRoot("discovery", Namespace = DiscoveryDocument.Namespace)] 57public static DiscoveryDocument Read(Stream stream) { 69public static DiscoveryDocument Read(TextReader reader) { 81public static DiscoveryDocument Read(XmlReader xmlReader) { 82return (DiscoveryDocument) WebServicesSection.Current.DiscoveryDocumentSerializer.Deserialize(xmlReader);
System\Web\Services\Discovery\DiscoveryDocumentReference.cs (13)
27[XmlRoot("discoveryRef", Namespace = DiscoveryDocument.Namespace)] 78public DiscoveryDocument Document { 87DiscoveryDocument discoDocument = document as DiscoveryDocument; 90typeof(DiscoveryDocument).FullName, 129private static DiscoveryDocument GetDocumentNoParse(ref string url, DiscoveryClientProtocol client) { 130DiscoveryDocument d = (DiscoveryDocument) client.Documents[url]; 143if (!DiscoveryDocument.CanRead(reader)) { 148return DiscoveryDocument.Read(reader); 160DiscoveryDocument document = null; 178if (DiscoveryDocument.CanRead(reader)) { 180document = DiscoveryDocument.Read(reader);
System\Web\Services\Discovery\DiscoveryDocumentSerializer.cs (5)
12Write9_DiscoveryDocument(@"discovery", @"http://schemas.xmlsoap.org/disco/", ((global::System.Web.Services.Discovery.DiscoveryDocument)o), true, false); 15void Write9_DiscoveryDocument(string n, string ns, global::System.Web.Services.Discovery.DiscoveryDocument o, bool isNullable, bool needType) { 22if (t == typeof(global::System.Web.Services.Discovery.DiscoveryDocument)) { 162global::System.Web.Services.Discovery.DiscoveryDocument Read9_DiscoveryDocument(bool isNullable, bool checkType) { 173global::System.Web.Services.Discovery.DiscoveryDocument o;
System\Web\Services\Discovery\DiscoveryRequestHandler.cs (1)
100DiscoveryDocument discoFile = searcher.DiscoveryDocument;
System\Web\Services\Discovery\DynamicDiscoSearcher.cs (2)
34protected DiscoveryDocument discoDoc = new DiscoveryDocument(); 64internal DiscoveryDocument DiscoveryDocument {
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (2)
29DiscoveryDocument discoDoc; 186internal DiscoveryDocument Disco {
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
200DiscoveryDocument doc = disco.Discover(Url);