WebException Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase WebException.
Sobrecargas
WebException() |
Inicializa una nueva instancia de la clase WebException. |
WebException(String) |
Inicializa una nueva instancia de la clase WebException con el mensaje de error especificado. |
WebException(SerializationInfo, StreamingContext) |
Obsoletos.
Inicializa una nueva instancia de la clase WebException desde las instancias StreamingContext y SerializationInfo. |
WebException(String, WebExceptionStatus) |
Inicializa una nueva instancia de la clase WebException con el mensaje de error y el estado especificados. |
WebException(String, Exception) |
Inicializa una nueva instancia de la clase WebException con el mensaje de error y la excepción anidada especificados. |
WebException(String, Exception, WebExceptionStatus, WebResponse) |
Inicializa una nueva instancia de la clase WebException con el mensaje de error, la excepción anidada, el estado y la respuesta especificados. |
WebException()
- Source:
- WebException.cs
- Source:
- WebException.cs
- Source:
- WebException.cs
Inicializa una nueva instancia de la clase WebException.
public:
WebException();
public WebException ();
Public Sub New ()
Ejemplos
En el ejemplo siguiente se produce un valor predeterminado WebException.
try
{
// A 'Socket' object has been created.
Socket^ httpSocket = gcnew Socket( AddressFamily::InterNetwork,SocketType::Stream,ProtocolType::Tcp );
// The IPaddress of the unknown uri is resolved using the 'Dns::Resolve' method.
IPHostEntry^ hostEntry = Dns::Resolve( "http://www.contoso.com" );
IPAddress^ serverAddress = hostEntry->AddressList[ 0 ];
IPEndPoint^ endPoint = gcnew IPEndPoint( serverAddress, 80 );
httpSocket->Connect( endPoint );
Console::WriteLine( "Connection created successfully" );
httpSocket->Close();
}
catch ( SocketException^ e )
{
String^ exp = e->Message;
// Throw the WebException with no parameters.
throw gcnew WebException;
}
try
{
// A 'Socket' object has been created.
Socket httpSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
// The IPaddress of the unknown uri is resolved using the 'Dns.Resolve' method.
IPHostEntry hostEntry = Dns.Resolve("http://www.contoso.com");
IPAddress serverAddress = hostEntry.AddressList[0];
IPEndPoint endPoint = new IPEndPoint(serverAddress, 80);
httpSocket.Connect(endPoint);
Console.WriteLine("Connection created successfully");
httpSocket.Close();
}
catch(SocketException e)
{
String exp = e.Message;
// Throw the WebException with no parameters.
throw new WebException();
}
Try
' A 'Socket' object has been created.
Dim httpSocket As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
' The IPaddress of the unknown uri is resolved using the 'Dns.Resolve' method.
' which leads to the 'SocketException' exception.
Dim hostEntry As IPHostEntry = Dns.Resolve("http://www.contoso.com")
Dim serverAddress As IPAddress = hostEntry.AddressList(0)
Dim endPoint As New IPEndPoint(serverAddress, 80)
httpSocket.Connect(endPoint)
Console.WriteLine("Connection created successfully")
httpSocket.Close()
Catch e As SocketException
Dim exp As [String] = e.Message
' Throw the WebException with no parameters.
Throw New WebException()
End Try
Comentarios
El constructor sin parámetros inicializa una nueva instancia de la WebException clase . La Message propiedad se inicializa en un mensaje proporcionado por el sistema que describe el error. Este mensaje tiene en cuenta la referencia cultural del sistema actual. Las InnerException propiedades y Response se inicializan en null
. La propiedad Status se inicializa en RequestCanceled.
Se aplica a
WebException(String)
- Source:
- WebException.cs
- Source:
- WebException.cs
- Source:
- WebException.cs
Inicializa una nueva instancia de la clase WebException con el mensaje de error especificado.
public:
WebException(System::String ^ message);
public WebException (string message);
public WebException (string? message);
new System.Net.WebException : string -> System.Net.WebException
Public Sub New (message As String)
Parámetros
- message
- String
Texto del mensaje de error.
Ejemplos
En el ejemplo siguiente se produce un WebException mediante la especificación de un mensaje de error.
try
{
// A 'Socket' object has been created.
Socket^ httpSocket = gcnew Socket( AddressFamily::InterNetwork, SocketType::Stream, ProtocolType::Tcp );
// The IPaddress of the unknown uri is resolved using the 'Dns::Resolve' method.
IPHostEntry^ hostEntry = Dns::Resolve( connectUri );
IPAddress^ serverAddress = hostEntry->AddressList[ 0 ];
IPEndPoint^ endPoint = gcnew IPEndPoint( serverAddress, 80 );
httpSocket->Connect( endPoint );
Console::WriteLine( "Connection created successfully" );
httpSocket->Close();
}
catch ( SocketException^ e )
{
Console::WriteLine( "\nException thrown.\nThe Original Message is: {0}", e->Message );
// Throw the 'WebException' object with a message string specific to the situation.
throw gcnew WebException( "Unable to locate the Server with 'www.contoso.com' Uri." );
}
try
{
// A 'Socket' object has been created.
Socket httpSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
// The IPaddress of the unknown uri is resolved using the 'Dns.Resolve' method.
IPHostEntry hostEntry = Dns.Resolve(connectUri);
IPAddress serverAddress = hostEntry.AddressList[0];
IPEndPoint endPoint = new IPEndPoint(serverAddress, 80);
httpSocket.Connect(endPoint);
Console.WriteLine("Connection created successfully");
httpSocket.Close();
}
catch(SocketException e)
{
Console.WriteLine("\nException thrown.\nThe Original Message is: "+e.Message);
// Throw the 'WebException' object with a message string specific to the situation.
throw new WebException("Unable to locate the Server with 'www.contoso.com' Uri.");
}
Try
' A 'Socket' object has been created.
Dim httpSocket As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
' The IPaddress of the unknown uri is resolved using the 'Dns.Resolve' method.
Dim hostEntry As IPHostEntry = Dns.Resolve(connectUri)
Dim serverAddress As IPAddress = hostEntry.AddressList(0)
Dim endPoint As New IPEndPoint(serverAddress, 80)
httpSocket.Connect(endPoint)
Console.WriteLine("Connection created successfully")
httpSocket.Close()
Catch e As SocketException
Console.WriteLine((ControlChars.Cr + "Exception thrown." + ControlChars.Cr + "The Original Message is: " + e.Message))
' Throw the 'WebException' object with a message string specific to the situation.
Throw New WebException("Unable to locate the Server with 'www.contoso.com' Uri.")
End Try
Comentarios
La WebException instancia se inicializa con la Message propiedad establecida en el valor de message
. Si message
es null
, la propiedad se inicializa en un mensaje proporcionado por el Message sistema. Las InnerException propiedades y Response se inicializan en null
. La propiedad Status se inicializa en RequestCanceled.
Consulte también
Se aplica a
WebException(SerializationInfo, StreamingContext)
- Source:
- WebException.cs
- Source:
- WebException.cs
- Source:
- WebException.cs
Precaución
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Inicializa una nueva instancia de la clase WebException desde las instancias StreamingContext y SerializationInfo.
protected:
WebException(System::Runtime::Serialization::SerializationInfo ^ serializationInfo, System::Runtime::Serialization::StreamingContext streamingContext);
protected WebException (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected WebException (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);
new System.Net.WebException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Net.WebException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Net.WebException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Net.WebException
Protected Sub New (serializationInfo As SerializationInfo, streamingContext As StreamingContext)
Parámetros
- serializationInfo
- SerializationInfo
SerializationInfo que contiene la información necesaria para serializar la nueva excepción WebException.
- streamingContext
- StreamingContext
StreamingContext que contiene el origen de la secuencia serializada asociada a la nueva excepción WebException.
- Atributos
Comentarios
Este constructor implementa la ISerializable interfaz de la WebException clase .
Consulte también
Se aplica a
WebException(String, WebExceptionStatus)
- Source:
- WebException.cs
- Source:
- WebException.cs
- Source:
- WebException.cs
Inicializa una nueva instancia de la clase WebException con el mensaje de error y el estado especificados.
public:
WebException(System::String ^ message, System::Net::WebExceptionStatus status);
public WebException (string message, System.Net.WebExceptionStatus status);
public WebException (string? message, System.Net.WebExceptionStatus status);
new System.Net.WebException : string * System.Net.WebExceptionStatus -> System.Net.WebException
Public Sub New (message As String, status As WebExceptionStatus)
Parámetros
- message
- String
Texto del mensaje de error.
- status
- WebExceptionStatus
Uno de los valores de WebExceptionStatus.
Ejemplos
En el ejemplo siguiente se produce un WebException mediante la especificación de un mensaje de error y un .WebExceptionStatus
try
{
// A 'Socket' object has been created.
Socket^ httpSocket = gcnew Socket( AddressFamily::InterNetwork, SocketType::Stream, ProtocolType::Tcp );
// The IPaddress of the unknown uri is resolved using the 'Dns::Resolve' method.
IPHostEntry^ hostEntry = Dns::Resolve( "http://www.contoso.com" );
IPAddress^ serverAddress = hostEntry->AddressList[ 0 ];
IPEndPoint^ endPoint = gcnew IPEndPoint( serverAddress, 80 );
httpSocket->Connect( endPoint );
Console::WriteLine( "Connection created successfully" );
httpSocket->Close();
}
catch ( SocketException^ e )
{
Console::WriteLine( "\nException thrown.\nThe Original Message is: {0}", e->Message );
// Throw the 'WebException' object with a message string and message status specific to the situation.
throw gcnew WebException( "Unable to locate the Server with 'www.contoso.com' Uri.", WebExceptionStatus::NameResolutionFailure );
}
try
{
// A 'Socket' object has been created.
Socket httpSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
// The IPaddress of the unknown uri is resolved using the 'Dns.Resolve' method.
IPHostEntry hostEntry = Dns.Resolve("http://www.contoso.com");
IPAddress serverAddress = hostEntry.AddressList[0];
IPEndPoint endPoint = new IPEndPoint(serverAddress, 80);
httpSocket.Connect(endPoint);
Console.WriteLine("Connection created successfully");
httpSocket.Close();
}
catch(SocketException e)
{
Console.WriteLine("\nException thrown.\nThe Original Message is: "+e.Message);
// Throw the 'WebException' object with a message string and message status specific to the situation.
throw new WebException("Unable to locate the Server with 'www.contoso.com' Uri.",WebExceptionStatus.NameResolutionFailure);
}
Try
' A 'Socket' object has been created.
Dim httpSocket As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
' The IPaddress of the unknown uri is resolved using the 'Dns.Resolve' method.
Dim hostEntry As IPHostEntry = Dns.Resolve(connectUri)
Dim serverAddress As IPAddress = hostEntry.AddressList(0)
Dim endPoint As New IPEndPoint(serverAddress, 80)
httpSocket.Connect(endPoint)
Console.WriteLine("Connection created successfully")
httpSocket.Close()
Catch e As SocketException
Console.WriteLine((ControlChars.Cr + "Exception thrown." + ControlChars.Cr + "The Original Message is: " + e.Message))
' Throw the 'WebException' object with a message string and message status specific to the situation.
Throw New WebException("Unable to locate the Server with 'www.contoso.com' Uri.", WebExceptionStatus.NameResolutionFailure)
End Try
Comentarios
La WebException instancia se inicializa con la Message propiedad establecida en el valor de message
y la Status propiedad establecida en el valor de status
. Si message
es null
, la propiedad se inicializa en un mensaje proporcionado por el Message sistema. Las InnerException propiedades y Response se inicializan en null
.
Se aplica a
WebException(String, Exception)
- Source:
- WebException.cs
- Source:
- WebException.cs
- Source:
- WebException.cs
Inicializa una nueva instancia de la clase WebException con el mensaje de error y la excepción anidada especificados.
public:
WebException(System::String ^ message, Exception ^ inner);
public:
WebException(System::String ^ message, Exception ^ innerException);
public WebException (string message, Exception inner);
public WebException (string? message, Exception? innerException);
public WebException (string message, Exception innerException);
new System.Net.WebException : string * Exception -> System.Net.WebException
new System.Net.WebException : string * Exception -> System.Net.WebException
Public Sub New (message As String, inner As Exception)
Public Sub New (message As String, innerException As Exception)
Parámetros
- message
- String
Texto del mensaje de error.
- innerinnerException
- Exception
Excepción anidada.
Ejemplos
En el ejemplo siguiente se produce un WebException mediante la especificación de un mensaje de error y una excepción anidada.
try
{
// A 'Socket' object has been created.
Socket^ httpSocket = gcnew Socket( AddressFamily::InterNetwork, SocketType::Stream, ProtocolType::Tcp );
// The IPaddress of the unknown uri is resolved using the 'Dns::Resolve' method.
IPHostEntry^ hostEntry = Dns::Resolve( connectUri );
IPAddress^ serverAddress = hostEntry->AddressList[ 0 ];
IPEndPoint^ endPoint = gcnew IPEndPoint( serverAddress, 80 );
httpSocket->Connect( endPoint );
Console::WriteLine( "Connection created successfully" );
httpSocket->Close();
}
catch ( SocketException^ e )
{
Console::WriteLine( "\nException thrown.\nThe Original Message is: {0}", e->Message );
// Throw the 'WebException' object with a message string specific to the situation;
// and the 'InnerException' that actually led to this exception.
throw gcnew WebException( "Unable to locate the Server with 'www.contoso.com' Uri.", e );
}
try
{
// A 'Socket' object has been created.
Socket httpSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
// The IPaddress of the unknown uri is resolved using the 'Dns.Resolve' method.
IPHostEntry hostEntry = Dns.Resolve(connectUri);
IPAddress serverAddress = hostEntry.AddressList[0];
IPEndPoint endPoint = new IPEndPoint(serverAddress, 80);
httpSocket.Connect(endPoint);
Console.WriteLine("Connection created successfully");
httpSocket.Close();
}
catch(SocketException e)
{
Console.WriteLine("\nException thrown.\nThe Original Message is: "+e.Message);
// Throw the 'WebException' object with a message string specific to the situation;
// and the 'InnerException' which actually lead to this exception.
throw new WebException("Unable to locate the Server with 'www.contoso.com' Uri.",e);
}
Try
' A 'Socket' object has been created.
Dim httpSocket As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
' The IPaddress of the unknown uri is resolved using the 'Dns.Resolve' method.
Dim hostEntry As IPHostEntry = Dns.Resolve(connectUri)
Dim serverAddress As IPAddress = hostEntry.AddressList(0)
Dim endPoint As New IPEndPoint(serverAddress, 80)
httpSocket.Connect(endPoint)
Console.WriteLine("Connection created successfully")
httpSocket.Close()
Catch e As SocketException
Console.WriteLine((ControlChars.Cr + "Exception thrown." + ControlChars.Cr + "The Original Message is: " + e.Message))
' Throw the 'WebException' object with a message string specific to the situation.
' and the 'InnerException' which actually lead to this exception.
Throw New WebException("Unable to locate the Server with 'www.contoso.com' Uri.", e)
End Try
Comentarios
La WebException instancia se inicializa con la Message propiedad establecida en el valor de message
y la InnerException propiedad establecida en el valor de innerException
. Si message
es null
, la propiedad se inicializa en un mensaje proporcionado por el Message sistema. Las InnerException propiedades y Response se inicializan en null
. La propiedad Status se inicializa en RequestCanceled.
Consulte también
Se aplica a
WebException(String, Exception, WebExceptionStatus, WebResponse)
- Source:
- WebException.cs
- Source:
- WebException.cs
- Source:
- WebException.cs
Inicializa una nueva instancia de la clase WebException con el mensaje de error, la excepción anidada, el estado y la respuesta especificados.
public:
WebException(System::String ^ message, Exception ^ inner, System::Net::WebExceptionStatus status, System::Net::WebResponse ^ response);
public:
WebException(System::String ^ message, Exception ^ innerException, System::Net::WebExceptionStatus status, System::Net::WebResponse ^ response);
public WebException (string message, Exception inner, System.Net.WebExceptionStatus status, System.Net.WebResponse response);
public WebException (string? message, Exception? innerException, System.Net.WebExceptionStatus status, System.Net.WebResponse? response);
public WebException (string message, Exception innerException, System.Net.WebExceptionStatus status, System.Net.WebResponse response);
new System.Net.WebException : string * Exception * System.Net.WebExceptionStatus * System.Net.WebResponse -> System.Net.WebException
new System.Net.WebException : string * Exception * System.Net.WebExceptionStatus * System.Net.WebResponse -> System.Net.WebException
Public Sub New (message As String, inner As Exception, status As WebExceptionStatus, response As WebResponse)
Public Sub New (message As String, innerException As Exception, status As WebExceptionStatus, response As WebResponse)
Parámetros
- message
- String
Texto del mensaje de error.
- innerinnerException
- Exception
Excepción anidada.
- status
- WebExceptionStatus
Uno de los valores de WebExceptionStatus.
- response
- WebResponse
Instancia de WebResponse que contiene la respuesta del host remoto.
Ejemplos
En el ejemplo siguiente se produce un WebException mediante la especificación de un mensaje de error y un .WebExceptionStatus
// Send the data.
Encoding^ ASCII = Encoding::ASCII;
String^ requestPage = String::Concat( "GET /nhjj.htm HTTP/1.1\r\nHost: ", connectUri, "\r\nConnection: Close\r\n\r\n" );
array<Byte>^ byteGet = ASCII->GetBytes( requestPage );
array<Byte>^ recvBytes = gcnew array<Byte>(256);
// Create an 'IPEndPoint' object.
IPHostEntry^ hostEntry = Dns::Resolve( connectUri );
IPAddress^ serverAddress = hostEntry->AddressList[ 0 ];
IPEndPoint^ endPoint = gcnew IPEndPoint( serverAddress,80 );
// Create a 'Socket' object for sending data.
Socket^ connectSocket = gcnew Socket( AddressFamily::InterNetwork, SocketType::Stream, ProtocolType::Tcp );
// Connect to host using 'IPEndPoint' object.
connectSocket->Connect( endPoint );
// Sent the 'requestPage' text to the host.
connectSocket->Send( byteGet, byteGet->Length, (SocketFlags)(0) );
// Receive the information sent by the server.
Int32 bytesReceived = connectSocket->Receive( recvBytes, recvBytes->Length, (SocketFlags)(0) );
String^ headerString = ASCII->GetString( recvBytes, 0, bytesReceived );
// Check whether 'status 404' is there or not in the information sent by server.
if ( headerString->IndexOf( "404" ) != -1 )
{
bytesReceived = connectSocket->Receive( recvBytes, recvBytes->Length, (SocketFlags)(0) );
MemoryStream^ memoryStream = gcnew MemoryStream( recvBytes );
getStream = (System::IO::Stream^)(memoryStream);
// Create a 'WebResponse' object
WebResponse^ myWebResponse = (WebResponse^)(gcnew HttpConnect( getStream ));
Exception^ myException = gcnew Exception( "File Not found" );
// Throw the 'WebException' object with a message string, message status, InnerException and WebResponse
throw gcnew WebException( "The Requested page is not found.",myException,WebExceptionStatus::ProtocolError,myWebResponse );
}
connectSocket->Close();
// Send the data.
Encoding ASCII = Encoding.ASCII;
string requestPage = "GET /nhjj.htm HTTP/1.1\r\nHost: " + connectUri + "\r\nConnection: Close\r\n\r\n";
Byte[] byteGet = ASCII.GetBytes(requestPage);
Byte[] recvBytes = new Byte[256];
// Create an 'IPEndPoint' object.
IPHostEntry hostEntry = Dns.Resolve(connectUri);
IPAddress serverAddress = hostEntry.AddressList[0];
IPEndPoint endPoint = new IPEndPoint(serverAddress, 80);
// Create a 'Socket' object for sending data.
Socket connectSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream,ProtocolType.Tcp);
// Connect to host using 'IPEndPoint' object.
connectSocket.Connect(endPoint);
// Sent the 'requestPage' text to the host.
connectSocket.Send(byteGet, byteGet.Length, 0);
// Receive the information sent by the server.
Int32 bytesReceived = connectSocket.Receive(recvBytes, recvBytes.Length, 0);
String headerString = ASCII.GetString(recvBytes, 0, bytesReceived);
// Check whether 'status 404' is there or not in the information sent by server.
if(headerString.IndexOf("404")!=-1)
{
bytesReceived = connectSocket.Receive(recvBytes, recvBytes.Length, 0);
MemoryStream memoryStream = new MemoryStream(recvBytes);
getStream = (Stream) memoryStream;
// Create a 'WebResponse' object
WebResponse myWebResponse = (WebResponse) new HttpConnect(getStream);
Exception myException = new Exception("File Not found");
// Throw the 'WebException' object with a message string, message status,InnerException and WebResponse
throw new WebException("The Requested page is not found.",myException,WebExceptionStatus.ProtocolError,myWebResponse);
}
connectSocket.Close();
' Send the data.
Dim ASCII As Encoding = Encoding.ASCII
Dim requestPage As String = "GET /nhjj.htm HTTP/1.1" + ControlChars.Lf + ControlChars.Cr + "Host: " + connectUri + ControlChars.Lf + ControlChars.Cr + "Connection: Close" + ControlChars.Lf + ControlChars.Cr + ControlChars.Lf + ControlChars.Cr
Dim byteGet As [Byte]() = ASCII.GetBytes(requestPage)
Dim recvBytes(256) As [Byte]
' Create an 'IPEndPoint' object.
Dim hostEntry As IPHostEntry = Dns.Resolve(connectUri)
Dim serverAddress As IPAddress = hostEntry.AddressList(0)
Dim endPoint As New IPEndPoint(serverAddress, 80)
' Create a 'Socket' object for sending data.
Dim connectSocket As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
' Connect to host using 'IPEndPoint' object.
connectSocket.Connect(endPoint)
' Sent the 'requestPage' text to the host.
connectSocket.Send(byteGet, byteGet.Length, 0)
' Receive the information sent by the server.
Dim bytesReceived As Int32 = connectSocket.Receive(recvBytes, recvBytes.Length, 0)
Dim headerString As [String] = ASCII.GetString(recvBytes, 0, bytesReceived)
' Check whether 'status 404' is there or not in the information sent by server.
If headerString.IndexOf("404") <> False Then
bytesReceived = connectSocket.Receive(recvBytes, recvBytes.Length, 0)
Dim memoryStream As New MemoryStream(recvBytes)
getStream = CType(memoryStream, Stream)
' Create a 'WebResponse' object.
Dim myWebResponse As WebResponse = CType(New HttpConnect(getStream), WebResponse)
Dim myException As New Exception("File Not found")
' Throw the 'WebException' object with a message string, message status,InnerException and WebResponse.
Throw New WebException("The Requested page is not found.", myException, WebExceptionStatus.ProtocolError, myWebResponse)
End If
connectSocket.Close()
Comentarios
La WebException instancia se inicializa con la Message propiedad establecida en el valor de message
, la InnerException propiedad establecida en el valor de innerException
, la Status propiedad establecida en el valor de status
y la Response propiedad establecida en el valor de response
. Si message
es null
, la propiedad se inicializa en un mensaje proporcionado por el Message sistema.