ServiceCollection.Remove(Service) Método

Definição

Remove a primeira ocorrência do especificado Service do ServiceCollection.

public:
 void Remove(System::Web::Services::Description::Service ^ service);
public void Remove(System.Web.Services.Description.Service service);
member this.Remove : System.Web.Services.Description.Service -> unit
Public Sub Remove (service As Service)

Parâmetros

service
Service

A Service remover da coleção.

Exemplos

// Read a ServiceDescription from existing WSDL.
ServiceDescription^ myServiceDescription = ServiceDescription::Read( "Input_CS.wsdl" );
myServiceDescription->TargetNamespace = "http://tempuri.org/";

// Get the ServiceCollection of the ServiceDescription.
ServiceCollection^ myServiceCollection = myServiceDescription->Services;

// Remove the Service at index 0 of the collection.
myServiceCollection->Remove( myServiceDescription->Services[ 0 ] );
// Read a ServiceDescription from existing WSDL.
ServiceDescription myServiceDescription =
   ServiceDescription.Read("Input_CS.wsdl");
myServiceDescription.TargetNamespace = "http://tempuri.org/";

// Get the ServiceCollection of the ServiceDescription.
ServiceCollection myServiceCollection = myServiceDescription.Services;

// Remove the Service at index 0 of the collection.
myServiceCollection.Remove(myServiceDescription.Services[0]);
' Read a ServiceDescription from existing WSDL.
Dim myServiceDescription As ServiceDescription = _
   ServiceDescription.Read("Input.vb.wsdl")
myServiceDescription.TargetNamespace = "http://tempuri.org/"

' Get the ServiceCollection of the ServiceDescription.
Dim myServiceCollection As ServiceCollection = _
   myServiceDescription.Services

' Remove the Service at index 0 of the collection.
myServiceCollection.Remove(myServiceDescription.Services.Item(0))

Observações

Este método realiza uma pesquisa linear; Portanto, o tempo médio de execução é proporcional a Count.

Os elementos que seguem ao removido Service sobem para ocupar o local vago.

Aplica-se a