UtilPeHeaderIsStrongNameSigned(String) Method
Gets a value that determine whether the specified .NET assembly is strong-name signed.
Namespace: DevCase.Core.Diagnostics.AssemblyAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static bool IsStrongNameSigned(
string filepath
)
Public Shared Function IsStrongNameSigned (
filepath As String
) As Boolean
Dim filepath As String
Dim returnValue As Boolean
returnValue = UtilPeHeader.IsStrongNameSigned(filepath)
public:
static bool IsStrongNameSigned(
String^ filepath
)
static member IsStrongNameSigned :
filepath : string -> bool
No code example is currently available or this language may not be supported.
- filepath String
-
The assembly file path.
Boolean if the specified assembly is strong-name signed; otherwise,
.
This is a code example.
No code example is currently available or this language may not be supported.
Dim assemblyPath As String = "C:\Assembly.exe"
Dim isStrongNameSigned As Boolean = IsStrongNameSigned(assemblyPath)
Console.WriteLine(isStrongNameSigned.ToString())
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.