IPacket.WriteByte 方法

更新:2007 年 11 月

向对象中写入一个字节。

命名空间:  Microsoft.SmartDevice.DeviceAgentTransport
程序集:  Microsoft.SmartDevice.DeviceAgentTransport(在 Microsoft.SmartDevice.DeviceAgentTransport.dll 中)

语法

声明
Sub WriteByte ( _
    in_byte As Byte _
)
用法
Dim instance As IPacket
Dim in_byte As Byte

instance.WriteByte(in_byte)
void WriteByte(
    byte in_byte
)
void WriteByte(
    unsigned char in_byte
)
function WriteByte(
    in_byte : byte
)

参数

  • in_byte
    类型:System.Byte

    要向数据包中写入的字节。

示例

    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);

权限

另请参见

参考

IPacket 接口

IPacket 成员

Microsoft.SmartDevice.DeviceAgentTransport 命名空间