ServiceDescriptionFormatExtensionCollection.Remove(Object) Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Remove a primeira ocorrência do especificado ServiceDescriptionFormatExtension do ServiceDescriptionFormatExtensionCollection.
public:
void Remove(System::Object ^ extension);
public void Remove(object extension);
member this.Remove : obj -> unit
Public Sub Remove (extension As Object)
Parâmetros
- extension
- Object
O ServiceDescriptionFormatExtension para remover do ServiceDescriptionFormatExtensionCollection.
Exemplos
// Remove 'myFormatExtensionObject' element from collection.
myCollection->Remove( myFormatExtensionObject );
Console::WriteLine( "'myFormatExtensionObject' is removed from collection." );
// Remove 'myFormatExtensionObject' element from collection.
myCollection.Remove(myFormatExtensionObject);
Console.WriteLine("'myFormatExtensionObject' is removed"+
" from collection.");
' Remove 'myFormatExtensionObject' element from collection.
myCollection.Remove(myFormatExtensionObject)
Console.WriteLine("'myFormatExtensionObject' is removed" + _
" from collection.")