Mono.Debugger.Soft.Connection.Assembly_GetType C# (CSharp) Method

Assembly_GetType() public method

public Assembly_GetType ( long id, string name, bool ignoreCase ) : long
id long
name string
ignoreCase bool
return long
		public long Assembly_GetType (long id, string name, bool ignoreCase) {
			return SendReceive (CommandSet.ASSEMBLY, (int)CmdAssembly.GET_TYPE, new PacketWriter ().WriteId (id).WriteString (name).WriteBool (ignoreCase)).ReadId ();
		}
Connection