System.Runtime.Serialization.Formatters.Soap.SoapWriter.WriteAssembly C# (CSharp) 메소드

WriteAssembly() 개인적인 메소드

private WriteAssembly ( String typeFullName, Type type, String assemName, int assemId, bool isNew, bool isInteropType ) : void
typeFullName String
type Type
assemName String
assemId int
isNew bool
isInteropType bool
리턴 void
		internal void WriteAssembly(String typeFullName, Type type, String assemName, int assemId, bool isNew, bool isInteropType)
		{
			InternalST.Soap( this, "WriteAssembly ",typeFullName," ",type," ",assemId," ",assemName," isNew ",isNew, " isInteropType ", isInteropType);
			if (isNew)
			{
				InternalST.Soap( this, "WriteAssembly new Assembly ");
				if (isInteropType)
				{
					// Interop type
					assemblyInfos[InteropAssemIdToString(assemId)] = new AssemblyInfo(assemId, assemName, isInteropType);
				}
			}

			if (!isInteropType)
			{
				// assembly name and dotted namespaces are combined
				ParseAssemblyName(typeFullName, assemName);
			}
		}