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

Dump() public method

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

Usage Example

示例#1
0
        internal void WriteAssembly(String typeFullName, Type type, String assemblyString, int assemId, bool isNew, bool isInteropType)
        {
            SerTrace.Log(this, "WriteAssembly type ", type, ", id ", assemId, ", name ", assemblyString, ", isNew ", isNew);
            //If the file being tested wasn't built as an assembly, then we're going to get null back
            //for the assembly name.  This is very unfortunate.
            InternalWriteItemNull();
            if (assemblyString == null)
            {
                assemblyString = String.Empty;
            }

            if (isNew)
            {
                if (objectWriter.IsCrossAppDomain())
                {
                    if (crossAppDomainAssembly == null)
                    {
                        crossAppDomainAssembly = new BinaryCrossAppDomainAssembly();
                    }
                    crossAppDomainAssembly.Set(assemId, objectWriter.CrossAppDomainArrayAdd(assemblyString));
                    crossAppDomainAssembly.Dump();
                    crossAppDomainAssembly.Write(this);
                }
                else
                {
                    if (binaryAssembly == null)
                    {
                        binaryAssembly = new BinaryAssembly();
                    }
                    binaryAssembly.Set(assemId, assemblyString);
                    binaryAssembly.Dump();
                    binaryAssembly.Write(this);
                }
            }
        }
All Usage Examples Of System.Runtime.Serialization.Formatters.Binary.BinaryCrossAppDomainAssembly::Dump