ChannelFaultedEventArgs Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ChannelFaultedEventArgs(Exception) |
Initializes a new instance of the |
ChannelFaultedEventArgs(String, Exception) |
Initializes a new instance of the |
ChannelFaultedEventArgs(Exception)
Initializes a new instance of the ChannelFaultedEventArgs
class using an exception.
public:
ChannelFaultedEventArgs(Exception ^ exception);
public ChannelFaultedEventArgs (Exception exception);
new Microsoft.Xrm.Sdk.Client.ChannelFaultedEventArgs : Exception -> Microsoft.Xrm.Sdk.Client.ChannelFaultedEventArgs
Public Sub New (exception As Exception)
Parameters
- exception
- Exception
An exception or null
.
Applies to
ChannelFaultedEventArgs(String, Exception)
Initializes a new instance of the ChannelFaultedEventArgs
class using message and an exception.
public:
ChannelFaultedEventArgs(System::String ^ message, Exception ^ exception);
public ChannelFaultedEventArgs (string message, Exception exception);
new Microsoft.Xrm.Sdk.Client.ChannelFaultedEventArgs : string * Exception -> Microsoft.Xrm.Sdk.Client.ChannelFaultedEventArgs
Public Sub New (message As String, exception As Exception)
Parameters
- message
- String
A message describing the event.
- exception
- Exception
An exception or null
.