SPWebServiceInstanceCollection 类
表示SPWebServiceInstance对象的集合。
继承层次结构
System.Object
Microsoft.SharePoint.Administration.SPPersistedObjectCollection<SPWebServiceInstance>
Microsoft.SharePoint.Administration.SPPersistedChildCollection<SPWebServiceInstance>
Microsoft.SharePoint.Administration.SPWebServiceInstanceCollection
命名空间: Microsoft.SharePoint.Administration
程序集: Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)
语法
声明
<SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel := True)> _
Public NotInheritable Class SPWebServiceInstanceCollection _
Inherits SPPersistedChildCollection(Of SPWebServiceInstance)
用法
Dim instance As SPWebServiceInstanceCollection
[SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel = true)]
public sealed class SPWebServiceInstanceCollection : SPPersistedChildCollection<SPWebServiceInstance>
备注
使用SPWebService类的继承的Instances属性返回一个SPServiceInstanceDependencyCollection对象,表示数据库服务的所有实例。使用SPWebServiceInstanceCollection构造函数可以访问特定服务器运行的 Web 服务实例的集合。
可以在ContentService或AdministrationServiceSPWebService类的属性上使用继承的Instances属性返回的内容或管理服务,从属实例的集合,然后循环访问该集合以将这些实例强制转换为 Web 服务实例,如在发生以下:
Dim webServiceInstance As SPWebServiceInstance
For Each webServiceInstance In SPWebService.ContentService.Instances
...
Next webServiceInstance
foreach(SPWebServiceInstance webServiceInstance in SPWebService.ContentService.Instances)
{...}
若要向集合中添加 Web 服务实例,请使用Add方法。
使用索引器从集合中返回单个的 Web 服务实例。例如,如果集合分配给名为 myWebServiceInstances 的变量中,使用在 C# myWebServiceInstances[index]或myWebServiceInstances(index)在 Visual Basic,其中index是用于标识 Web 服务实例的 GUID 或名称。
线程安全性
该类型的任何公共 静态 (已共享 在 Visual Basic 中) 成员都是线程安全的。不保证任何实例成员都是线程安全的。