本文整理汇总了VB.NET中System.Web.Services.Discovery.DiscoveryClientReferenceCollection.Keys属性的典型用法代码示例。如果您正苦于以下问题:VB.NET DiscoveryClientReferenceCollection.Keys属性的具体用法?VB.NET DiscoveryClientReferenceCollection.Keys怎么用?VB.NET DiscoveryClientReferenceCollection.Keys使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类System.Web.Services.Discovery.DiscoveryClientReferenceCollection
的用法示例。
在下文中一共展示了DiscoveryClientReferenceCollection.Keys属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: myObjectCollection
Dim myDiscoveryClientProtocol As New DiscoveryClientProtocol()
myDiscoveryClientProtocol.Credentials = _
CredentialCache.DefaultCredentials
' 'dataservice.disco' is a sample discovery document.
Dim myStringUrl As String = "http://localhost/dataservice.disco"
' Call the Discover method to populate the References property.
Dim myDiscoveryDocument As DiscoveryDocument = _
myDiscoveryClientProtocol.Discover(myStringUrl)
' Resolve all references found in the discovery document.
myDiscoveryClientProtocol.ResolveAll()
Dim myDiscoveryClientReferenceCollection As DiscoveryClientReferenceCollection = _
myDiscoveryClientProtocol.References
' Retrieve the keys in the collection.
Dim myCollection As ICollection = myDiscoveryClientReferenceCollection.Keys
Dim myObjectCollection(myDiscoveryClientReferenceCollection.Count) As Object
myCollection.CopyTo(myObjectCollection, 0)
Console.WriteLine("The discovery documents, service descriptions, and XML schema")
Console.WriteLine(" definitions in the collection are:")
Dim iIndex As Integer
For iIndex = 0 To myObjectCollection.Length - 1
Console.WriteLine(myObjectCollection(iIndex))
Next iIndex
开发者ID:VB.NET开发者,项目名称:System.Web.Services.Discovery,代码行数:27,代码来源:DiscoveryClientReferenceCollection.Keys