UtilPeHeaderIsStrongNameSigned(FileInfo) 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(
FileInfo file
)
Public Shared Function IsStrongNameSigned (
file As FileInfo
) As Boolean
Dim file As FileInfo
Dim returnValue As Boolean
returnValue = UtilPeHeader.IsStrongNameSigned(file)
public:
static bool IsStrongNameSigned(
FileInfo^ file
)
static member IsStrongNameSigned :
file : FileInfo -> bool
No code example is currently available or this language may not be supported.
- file FileInfo
-
The assembly file.
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 assemblyFile As New FileInfo("C:\Assembly.exe")
Dim isStrongNameSigned As Boolean = IsStrongNameSigned(assemblyFile)
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.