Ejemplo n.º 1
0
 public System.Reflection.Emit.ParameterBuilder DefineParameter(int position, System.Reflection.ParameterAttributes attributes, string strParamName)
 {
     throw null;
 }
Ejemplo n.º 2
0
 public void DefineParameter(string name, System.Reflection.ParameterAttributes attributes, int sequence, SymAddressKind addrKind, int addr1, int addr2, int addr3)
 {
     throw new NotImplementedException();
 }
 public void DefineParameter(string name, System.Reflection.ParameterAttributes attributes, int sequence, System.Diagnostics.SymbolStore.SymAddressKind addrKind, int addr1, int addr2, int addr3)
 {
 }
 public ParameterBuilder DefineParameter(int position, System.Reflection.ParameterAttributes attributes, string strParamName)
 {
 }
Ejemplo n.º 5
0
 public System.Reflection.Emit.ParameterBuilder DefineParameter(int position, System.Reflection.ParameterAttributes attributes, string strParamName)
 {
     return(default(System.Reflection.Emit.ParameterBuilder));
 }
        public ParameterBuilder DefineParameter(int position, System.Reflection.ParameterAttributes attributes, string strParamName)
        {
            Contract.Requires(position > 0);

            return(default(ParameterBuilder));
        }
Ejemplo n.º 7
0
 public System.Reflection.Emit.ParameterBuilder DefineParameter(int position, System.Reflection.ParameterAttributes attributes, string strParamName)
 {
     throw new PlatformNotSupportedException();
 }
 public void DefineParameter(string name, System.Reflection.ParameterAttributes attributes, int sequence,
                             SymAddressKind addrKind, int addr1, int addr2, int addr3)
 {
     HRESULT.ThrowOnFailure(_unmanaged.DefineParameter(name,
                                                       (int)attributes, sequence, (int)addrKind, addr1, addr2, addr3));
 }
Ejemplo n.º 9
0
        public ParameterBuilder DefineParameter(int position, System.Reflection.ParameterAttributes attributes, string strParamName)
        {
            Contract.Ensures(Contract.Result <System.Reflection.Emit.ParameterBuilder>() != null);

            return(default(ParameterBuilder));
        }
Ejemplo n.º 10
0
		/// <summary>
		///  Fills the row from the array of bytes.
		/// </summary>
		unsafe public void FromRawData(byte [] buff, int offs)
		{
			if (buff == null) throw new Exception("buff == null");
			if (offs + Size > buff.Length) throw new Exception("bounds");

		
			this.Flags = (System.Reflection.ParameterAttributes) LEBitConverter.ToUInt16(buff, offs);
			offs += sizeof (ushort);
			this.Sequence = LEBitConverter.ToUInt16(buff, offs);
			offs += sizeof (ushort);
			this.Name = LEBitConverter.ToInt32(buff, offs);
			
		}
 public ParameterBuilder DefineParameter(int iSequence, System.Reflection.ParameterAttributes attributes, string strParamName)
 {
     return(default(ParameterBuilder));
 }
Ejemplo n.º 12
0
 public virtual void DefineParameter(string name, System.Reflection.ParameterAttributes attributes, int sequence, SymAddressKind addrKind, int addr1, int addr2, int addr3)
 {
 }
 public ParameterBuilder DefineParameter(int position, System.Reflection.ParameterAttributes attributes, System.String parameterName)
 {
     throw null;
 }