VSNDK.DebugEngine.AD7Property.SetValueAsReference C# (CSharp) Method

SetValueAsReference() public method

Sets the value of the property from the value of a given reference. (http://msdn.microsoft.com/en-ca/library/bb145613.aspx) The debugger will call this when the user tries to edit the property's values. As the sample has set the read-only flag on its properties, this should not be called. Not implemented.
public SetValueAsReference ( IDebugReference2 rgpArgs, uint dwArgCount, IDebugReference2 pValue, uint dwTimeout ) : int
rgpArgs IDebugReference2 An array of arguments to pass to the managed code property setter. If the property setter does not /// take arguments or if this IDebugProperty2 object does not refer to such a property setter, rgpArgs should be a null value. /// This parameter is typically a null value.
dwArgCount uint The number of arguments in the rgpArgs array.
pValue IDebugReference2 A reference, in the form of an IDebugReference2 object, to the value to use to set this property.
dwTimeout uint How long to take to set the value, in milliseconds. A typical value is INFINITE. This affects /// the length of time that any possible evaluation can take.
return int
        public int SetValueAsReference(IDebugReference2[] rgpArgs, uint dwArgCount, IDebugReference2 pValue, uint dwTimeout)
        {
            throw new Exception("The method or operation is not implemented.");
        }