IPacket.WriteBytes メソッド
更新 : 2007 年 11 月
オブジェクトにバイトの配列を書き込みます。
名前空間 : Microsoft.SmartDevice.DeviceAgentTransport
アセンブリ : Microsoft.SmartDevice.DeviceAgentTransport (Microsoft.SmartDevice.DeviceAgentTransport.dll 内)
構文
'宣言
Sub WriteBytes ( _
buffer As Byte(), _
in_bufferSize As UInteger _
)
'使用
Dim instance As IPacket
Dim buffer As Byte()
Dim in_bufferSize As UInteger
instance.WriteBytes(buffer, in_bufferSize)
void WriteBytes(
byte[] buffer,
uint in_bufferSize
)
void WriteBytes(
[InAttribute] array<unsigned char>^ buffer,
[InAttribute] unsigned int in_bufferSize
)
function WriteBytes(
buffer : byte[],
in_bufferSize : uint
)
パラメータ
buffer
型 : array<System.Byte[]パケットに書き込むバイトの配列。
in_bufferSize
型 : System.UInt32バッファからパケットに書き込むバイト数を指定します。
例
packet = PacketFactory.GetNewPacket()
' Write the version of .NET Compact Framework into the packet.
packet.WriteString("Hello Desktop Computer")
packet.WriteInt32(Environment.Version.Major)
packet.WriteInt32(Environment.Version.Minor)
packet.WriteInt32(Environment.Version.Build)
packet.WriteInt32(Environment.Version.Revision)
' Pass the packet to desktop application.
packetStream.Write(packet)
End Sub 'Main
packet = PacketFactory.GetNewPacket();
// Write the version of .NET Compact Framework into the packet.
packet.WriteString("Hello Desktop Computer");
packet.WriteInt32(Environment.Version.Major);
packet.WriteInt32(Environment.Version.Minor);
packet.WriteInt32(Environment.Version.Build);
packet.WriteInt32(Environment.Version.Revision);
// Pass the packet to desktop application.
packetStream.Write(packet);
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。