コード例 #1
0
        private void SetPrivateExtension(byte[] prefix, byte[] data)
        {
            // If the collection does not exist, create it
            if (privs == null)
            {
                privs = new SdesPrivateExtensionHashtable();
            }

            // Set the value (this will add if it does not exist)
            privs[prefix] = data;
        }
コード例 #2
0
        public object Clone()
        {
            SdesPrivateExtensionHashtable clone = new SdesPrivateExtensionHashtable();

            foreach (DictionaryEntry de in h)
            {
                clone.Add((byte[])de.Key, (byte[])de.Value);
            }

            return(clone);
        }
コード例 #3
0
ファイル: RtcpData.cs プロジェクト: tdhieu/openvss
        private void SetPrivateExtension(byte[] prefix, byte[] data)
        {
            // If the collection does not exist, create it
            if (privs == null)
            {
                privs = new SdesPrivateExtensionHashtable();
            }

            // Set the value (this will add if it does not exist)
            privs[prefix] = data;
        }
コード例 #4
0
ファイル: Collections.cs プロジェクト: tdhieu/openvss
        public object Clone()
        {
            SdesPrivateExtensionHashtable clone = new SdesPrivateExtensionHashtable();

            foreach(DictionaryEntry de in h)
            {
                clone.Add((byte[])de.Key, (byte[])de.Value);
            }

            return clone;
        }