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

Type_GetPropertyCustomAttributes() public method

public Type_GetPropertyCustomAttributes ( long id, long field_id, long attr_type_id, bool inherit ) : Mono.Debugger.Soft.CattrInfo[]
id long
field_id long
attr_type_id long
inherit bool
return Mono.Debugger.Soft.CattrInfo[]
		public CattrInfo[] Type_GetPropertyCustomAttributes (long id, long field_id, long attr_type_id, bool inherit) {
			PacketReader r = SendReceive (CommandSet.TYPE, (int)CmdType.GET_PROPERTY_CATTRS, new PacketWriter ().WriteId (id).WriteId (field_id).WriteId (attr_type_id));
			return ReadCattrs (r);
		}
			
Connection