System.Runtime.Serialization.Formatters.Binary.__BinaryWriter.WriteAssembly C# (CSharp) Method

WriteAssembly() private method

private WriteAssembly ( String typeFullName, Type type, String assemblyString, int assemId, bool isNew, bool isInteropType ) : void
typeFullName String
type System.Type
assemblyString String
assemId int
isNew bool
isInteropType bool
return void
        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 (binaryAssembly == null)
                    binaryAssembly = new BinaryAssembly();
                binaryAssembly.Set(assemId, assemblyString);
                binaryAssembly.Dump();
                binaryAssembly.Write(this);
            }
        }