Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpedyc.DataFirstCompressedDvcPdu.GetNonDataSize C# (CSharp) Méthode

GetNonDataSize() public méthode

public GetNonDataSize ( ) : int
Résultat int
        public int GetNonDataSize()
        {
            return NonDataSize(false);
        }

Usage Example

        private void SendFirstCompressedDataPdu(uint channelId, uint uncomprressedDataLength, byte[] rawChannelData, DynamicVC_TransportType transport)
        {
            //Assume that only the raw channel data of a single DataFirstCompressedDvcPdu are passed.
            DataFirstCompressedDvcPdu firstCompressedPdu = new DataFirstCompressedDvcPdu(channelId, uncomprressedDataLength, rawChannelData);

            firstCompressedPdu.GetNonDataSize();
            Send(firstCompressedPdu, transport);
        }
All Usage Examples Of Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpedyc.DataFirstCompressedDvcPdu::GetNonDataSize