StrongNameKeyPair 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
警告
Strong name signing is not supported and throws PlatformNotSupportedException.
封裝公用或私密金鑰組 (用來簽名強式名稱組件) 的存取。
public ref class StrongNameKeyPair : System::Runtime::Serialization::IDeserializationCallback, System::Runtime::Serialization::ISerializable
public ref class StrongNameKeyPair
public class StrongNameKeyPair : System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
[System.Obsolete("Strong name signing is not supported and throws PlatformNotSupportedException.", DiagnosticId="SYSLIB0017", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public class StrongNameKeyPair : System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
[System.Serializable]
public class StrongNameKeyPair
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public class StrongNameKeyPair : System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
type StrongNameKeyPair = class
interface IDeserializationCallback
interface ISerializable
[<System.Obsolete("Strong name signing is not supported and throws PlatformNotSupportedException.", DiagnosticId="SYSLIB0017", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
type StrongNameKeyPair = class
interface IDeserializationCallback
interface ISerializable
[<System.Serializable>]
type StrongNameKeyPair = class
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type StrongNameKeyPair = class
interface IDeserializationCallback
interface ISerializable
Public Class StrongNameKeyPair
Implements IDeserializationCallback, ISerializable
Public Class StrongNameKeyPair
- 繼承
-
StrongNameKeyPair
- 屬性
- 實作
範例
下列程式代碼範例示範如何使用 -k 參數) 、從檔案讀取公鑰,以及顯示主控台視窗中的密鑰,以執行 Sn.exe (強名稱工具 ) 所產生的 Company.keys (檔案。
using namespace System;
using namespace System::IO;
using namespace System::Reflection;
ref class snkX
{
public:
static void Main()
{
// Open a file that contains a public key value. The line below
// assumes that the Strong Name tool (SN.exe) was executed from
// a command prompt as follows:
// SN.exe -k C:\Company.keys
FileStream^ fs = File::Open("C:\\Company.keys", FileMode::Open);
// Construct a StrongNameKeyPair object. This object should obtain
// the public key from the Company.keys file.
StrongNameKeyPair^ k = gcnew StrongNameKeyPair(fs);
// Display the bytes that make up the public key.
Console::WriteLine(BitConverter::ToString(k->PublicKey));
// Close the file.
fs->Close();
}
};
int main()
{
snkX::Main();
}
// Output will vary by user.
//
// 00-24-00-00-04-80-00-00-94-69-89-78-BB-F1-F2-71-00-00-00-34-26-
// 69-89-78-BB-F1-F2-71-00-F1-FA-F2-F9-4A-A8-5E-82-55-AB-49-4D-A6-
// ED-AB-5F-CE-DE-59-49-8D-63-01-B0-E1-BF-43-07-FA-55-D4-36-75-EE-
// 8B-83-32-39-B7-02-DE-3D-81-29-7B-E8-EA-F0-2E-78-94-96-F1-73-79-
// 69-89-78-BB-F1-F2-71-0E-4E-F4-5D-DD-A4-7F-11-54-DF-65-DE-89-23-
// 91-AD-53-E1-C0-DA-9E-0C-88-BE-AA-7B-39-20-9C-9B-55-34-26-3B-1A-
// 53-41-31-00-04-00-00-01-00-01-00-9D-F1-EA-14-4C-88-34-26-3B-1A-
// 2D-D7-A0-AB-F6-7E-B7-24-7F-87-DF-3E-97
using System;
using System.IO;
using System.Reflection;
class snkX
{
public static void Main()
{
// Open a file that contains a public key value. The line below
// assumes that the Strong Name tool (SN.exe) was executed from
// a command prompt as follows:
// SN.exe -k C:\Company.keys
FileStream fs = File.Open("C:\\Company.keys", FileMode.Open);
// Construct a StrongNameKeyPair object. This object should obtain
// the public key from the Company.keys file.
StrongNameKeyPair k = new StrongNameKeyPair(fs);
// Display the bytes that make up the public key.
Console.WriteLine(BitConverter.ToString(k.PublicKey));
// Close the file.
fs.Close();
}
}
// Output will vary by user.
//
// 00-24-00-00-04-80-00-00-94-69-89-78-BB-F1-F2-71-00-00-00-34-26-
// 69-89-78-BB-F1-F2-71-00-F1-FA-F2-F9-4A-A8-5E-82-55-AB-49-4D-A6-
// ED-AB-5F-CE-DE-59-49-8D-63-01-B0-E1-BF-43-07-FA-55-D4-36-75-EE-
// 8B-83-32-39-B7-02-DE-3D-81-29-7B-E8-EA-F0-2E-78-94-96-F1-73-79-
// 69-89-78-BB-F1-F2-71-0E-4E-F4-5D-DD-A4-7F-11-54-DF-65-DE-89-23-
// 91-AD-53-E1-C0-DA-9E-0C-88-BE-AA-7B-39-20-9C-9B-55-34-26-3B-1A-
// 53-41-31-00-04-00-00-01-00-01-00-9D-F1-EA-14-4C-88-34-26-3B-1A-
// 2D-D7-A0-AB-F6-7E-B7-24-7F-87-DF-3E-97
Imports System.Reflection
Imports System.IO
Module Module1
Sub Main()
' Open a file that contains a public key value. The line below
' assumes that the Strong Name tool (SN.exe) was executed from
' a command prompt as follows:
' SN.exe -k C:\Company.keys
Dim fs As FileStream = File.Open("C:\Company.keys", FileMode.Open)
' Construct a StrongNameKeyPair object. This object should obtain
' the public key from the Company.keys file.
Dim k As Reflection.StrongNameKeyPair = _
New Reflection.StrongNameKeyPair(fs)
' Display the bytes that make up the public key.
Console.WriteLine(BitConverter.ToString(k.PublicKey))
' Close the file.
fs.Close()
End Sub
End Module
' Output will vary by user.
'
' 00-24-00-00-04-80-00-00-94-69-89-78-BB-F1-F2-71-00-00-00-34-26-
' 69-89-78-BB-F1-F2-71-00-F1-FA-F2-F9-4A-A8-5E-82-55-AB-49-4D-A6-
' ED-AB-5F-CE-DE-59-49-8D-63-01-B0-E1-BF-43-07-FA-55-D4-36-75-EE-
' 8B-83-32-39-B7-02-DE-3D-81-29-7B-E8-EA-F0-2E-78-94-96-F1-73-79-
' 69-89-78-BB-F1-F2-71-0E-4E-F4-5D-DD-A4-7F-11-54-DF-65-DE-89-23-
' 91-AD-53-E1-C0-DA-9E-0C-88-BE-AA-7B-39-20-9C-9B-55-34-26-3B-1A-
' 53-41-31-00-04-00-00-01-00-01-00-9D-F1-EA-14-4C-88-34-26-3B-1A-
' 2D-D7-A0-AB-F6-7E-B7-24-7F-87-DF-3E-97
建構函式
StrongNameKeyPair(Byte[]) |
已淘汰.
初始化 StrongNameKeyPair 類別的新執行個體,建立來自 |
StrongNameKeyPair(FileStream) |
已淘汰.
初始化 StrongNameKeyPair 類別的新執行個體,建置來自 |
StrongNameKeyPair(SerializationInfo, StreamingContext) |
已淘汰.
初始化 StrongNameKeyPair 類別的新執行個體,從序列化資料建置金鑰組。 |
StrongNameKeyPair(String) |
已淘汰.
初始化 StrongNameKeyPair 類別的新執行個體,建置來自 |
屬性
PublicKey |
已淘汰.
取得金鑰組 (Key Pair) 公開金鑰 (Public Key) 或公開金鑰語彙基元 (Token) 的公開部分。 |
方法
Equals(Object) |
已淘汰.
判斷指定的物件是否等於目前的物件。 (繼承來源 Object) |
GetHashCode() |
已淘汰.
做為預設雜湊函式。 (繼承來源 Object) |
GetType() |
已淘汰.
取得目前執行個體的 Type。 (繼承來源 Object) |
MemberwiseClone() |
已淘汰.
建立目前 Object 的淺層複製。 (繼承來源 Object) |
ToString() |
已淘汰.
傳回代表目前物件的字串。 (繼承來源 Object) |
明確介面實作
IDeserializationCallback.OnDeserialization(Object) |
已淘汰.
執行於整個物件 Graph 已經還原序列化時。 |
ISerializable.GetObjectData(SerializationInfo, StreamingContext) |
已淘汰.
使用要重新執行個體化目前 SerializationInfo 物件所需的所有資料,設定 StrongNameKeyPair 物件。 |