System.Runtime.Serialization.Formatters.Binary.BinaryObjectString.Dump C# (CSharp) Method

Dump() public method

public Dump ( ) : void
return void
        public  void Dump()
        {
            DumpInternal();
        }

Usage Example

示例#1
0
        internal void WriteObjectString(int objectId, String value)
        {
            InternalWriteItemNull();

            if (objectWriter.IsCrossAppDomain())
            {
                if (binaryCrossAppDomainString == null)
                {
                    binaryCrossAppDomainString = new BinaryCrossAppDomainString();
                }
                binaryCrossAppDomainString.Set(objectId, objectWriter.CrossAppDomainArrayAdd(value));
                binaryCrossAppDomainString.Dump();
                binaryCrossAppDomainString.Write(this);
            }
            else
            {
                if (binaryObjectString == null)
                {
                    binaryObjectString = new BinaryObjectString();
                }
                binaryObjectString.Set(objectId, value);
                binaryObjectString.Dump();
                binaryObjectString.Write(this);
            }
        }
All Usage Examples Of System.Runtime.Serialization.Formatters.Binary.BinaryObjectString::Dump