ComponentRevocationFailedException 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
ComponentRevocationFailedException() |
Microsoft internal use only. |
ComponentRevocationFailedException(String) |
Microsoft internal use only. |
ComponentRevocationFailedException(SerializationInfo, StreamingContext) |
Obsolete.
Microsoft internal use only. |
ComponentRevocationFailedException(String, Exception) |
Microsoft internal use only. |
ComponentRevocationFailedException()
Microsoft internal use only.
public:
ComponentRevocationFailedException();
public:
ComponentRevocationFailedException();
ComponentRevocationFailedException();
public ComponentRevocationFailedException ();
Public Sub New ()
Applies to
ComponentRevocationFailedException(String)
Microsoft internal use only.
public:
ComponentRevocationFailedException(System::String ^ message);
public:
ComponentRevocationFailedException(Platform::String ^ message);
ComponentRevocationFailedException(std::wstring const & message);
public ComponentRevocationFailedException (string message);
new Microsoft.VisualStudio.PlatformUI.OleComponentSupport.ComponentRevocationFailedException : string -> Microsoft.VisualStudio.PlatformUI.OleComponentSupport.ComponentRevocationFailedException
Public Sub New (message As String)
Parameters
- message
- String
The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
Applies to
ComponentRevocationFailedException(SerializationInfo, StreamingContext)
Caution
This API is now deprecated.
Microsoft internal use only.
protected:
ComponentRevocationFailedException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected ComponentRevocationFailedException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete]
protected ComponentRevocationFailedException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.VisualStudio.PlatformUI.OleComponentSupport.ComponentRevocationFailedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.VisualStudio.PlatformUI.OleComponentSupport.ComponentRevocationFailedException
[<System.Obsolete>]
new Microsoft.VisualStudio.PlatformUI.OleComponentSupport.ComponentRevocationFailedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.VisualStudio.PlatformUI.OleComponentSupport.ComponentRevocationFailedException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
The object that holds the serialized object data.
- context
- StreamingContext
The contextual information about the source or destination.
- Attributes
Applies to
ComponentRevocationFailedException(String, Exception)
Microsoft internal use only.
public:
ComponentRevocationFailedException(System::String ^ message, Exception ^ innerException);
public ComponentRevocationFailedException (string message, Exception innerException);
new Microsoft.VisualStudio.PlatformUI.OleComponentSupport.ComponentRevocationFailedException : string * Exception -> Microsoft.VisualStudio.PlatformUI.OleComponentSupport.ComponentRevocationFailedException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
- innerException
- Exception
The exception that is the cause of the current exception. If the innerException
parameter is not null
, the current exception is raised in a catch
block that handles the inner exception.