PeerObject 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 PeerObject 類別的新執行個體。
多載
PeerObject() |
初始化 PeerObject 類別預設的新執行個體。 |
PeerObject(SerializationInfo, StreamingContext) |
使用序列化 (Serialization) 所需的相關參數,初始化新的 PeerObject 執行個體。 |
PeerObject(Guid, Byte[], PeerScope) |
使用相關聯的範圍和資料,初始化新的 PeerObject 執行個體。 |
備註
PeerObject建構實例之後,SetObject必須呼叫 方法,才能使用對等共同作業基礎結構發佈物件。
PeerObject()
初始化 PeerObject 類別預設的新執行個體。
public:
PeerObject();
public PeerObject ();
Public Sub New ()
備註
PeerObject建構實例之後,SetObject必須呼叫 方法,才能使用對等共同作業基礎結構發佈 PeerObject 。
另請參閱
適用於
PeerObject(SerializationInfo, StreamingContext)
使用序列化 (Serialization) 所需的相關參數,初始化新的 PeerObject 執行個體。
protected:
PeerObject(System::Runtime::Serialization::SerializationInfo ^ serializationInfo, System::Runtime::Serialization::StreamingContext streamingContext);
protected PeerObject (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);
new System.Net.PeerToPeer.Collaboration.PeerObject : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Net.PeerToPeer.Collaboration.PeerObject
Protected Sub New (serializationInfo As SerializationInfo, streamingContext As StreamingContext)
參數
- serializationInfo
- SerializationInfo
與 SerializationInfo 關聯的 PeerObject。
- streamingContext
- StreamingContext
與 PeerObject 關聯的序列化目的地。
另請參閱
適用於
PeerObject(Guid, Byte[], PeerScope)
使用相關聯的範圍和資料,初始化新的 PeerObject 執行個體。
public:
PeerObject(Guid Id, cli::array <System::Byte> ^ data, System::Net::PeerToPeer::Collaboration::PeerScope peerScope);
public PeerObject (Guid Id, byte[] data, System.Net.PeerToPeer.Collaboration.PeerScope peerScope);
new System.Net.PeerToPeer.Collaboration.PeerObject : Guid * byte[] * System.Net.PeerToPeer.Collaboration.PeerScope -> System.Net.PeerToPeer.Collaboration.PeerObject
Public Sub New (Id As Guid, data As Byte(), peerScope As PeerScope)
參數
- Id
- Guid
PeerObject 的使用者定義識別項。
- data
- Byte[]
內含有關 PeerObject 資訊的資料項目 (Data Blob)。 這個參數的大小限制為小於或等於 16K。
- peerScope
- PeerScope
指定 PeerObject 要註冊的範圍。
例外狀況
提供給這個方法的其中一個引數無效。
備註
Id
這個建構函式所使用的參數值會自動產生。
PeerObject建構實例之後,SetObject必須呼叫 方法,才能使用對等共同作業基礎結構發佈 PeerObject 。