Comment : implémenter la méthode ChainStream pour enregistrer des références sur les objets de flux
L'exemple suivant montre une implémentation courante de la méthode ChainStream.
Exemple
' Save the Stream representing the SOAP request or SOAP response
' into a local memory buffer.
Public Overrides Function ChainStream(stream As Stream) As Stream
' Save the passed in Stream in a member variable.
oldStream = stream
' Create a new instance of a Stream and save that in a member
' variable.
newStream = New MemoryStream()
Return newStream
End Function
// Save the Stream representing the SOAP request or SOAP response into
// a local memory buffer.
public override Stream ChainStream( Stream stream ){
// Save the passed in Stream in a member variable.
oldStream = stream;
// Create a new instance of a Stream and save that in a member
// variable.
newStream = new MemoryStream();
return newStream;
}
Voir aussi
Tâches
Procédure pas à pas : altération du message SOAP à l'aide d'extensions SOAP
Copyright ©2007 par Microsoft Corporation. Tous droits réservés.