Class UnsupportedSdkLibraryException
Exception class that tracks when a CodeFactory library is using an unsupported version of the SDK.
Implements
Inherited Members
Namespace: CodeFactory
Assembly: CodeFactory.dll
Syntax
public class UnsupportedSdkLibraryException : Exception, ISerializable
Constructors
UnsupportedSdkLibraryException(string, string, string, string)
Creates an instance of the exception UnsupportedSdkLibraryException
Declaration
public UnsupportedSdkLibraryException(string assemblyName, string assemblyVersion, string sdkMinVersion, string sdkMaxVersion)
Parameters
Type | Name | Description |
---|---|---|
string | assemblyName | Name of the assembly that is not supported. |
string | assemblyVersion | The SDK version that was used to create the assembly. |
string | sdkMinVersion | The minimum supported SDK version. |
string | sdkMaxVersion | The maximum supported SDK version. |
Properties
AssemblyName
The name of the assembly that is was compiled on an unsupported SDK version.
Declaration
public string AssemblyName { get; }
Property Value
Type | Description |
---|---|
string |
AssemblyVersion
The assembly SDK version that was used when building the assembly.
Declaration
public string AssemblyVersion { get; }
Property Value
Type | Description |
---|---|
string |
SdkMaxVersion
The maximum supported SDK version.
Declaration
public string SdkMaxVersion { get; }
Property Value
Type | Description |
---|---|
string |
SdkMinVersion
The minimum supported SDK version.
Declaration
public string SdkMinVersion { get; }
Property Value
Type | Description |
---|---|
string |