/// <summary>
 /// BindRegion
 /// </summary>
 /// <param name="origPos"></param>
 /// <param name="riid"></param>
 /// <remarks>
 /// The MSDN specification requires this function to return E_NOTIMPL for the time being.
 /// </remarks>
 public IntPtr BindRegion(FILTERREGION origPos, ref Guid riid)
 {
     // The following exception maps to E_NOTIMPL.
     throw new NotImplementedException(SR.Get(SRID.FilterBindRegionNotImplemented));
 }
예제 #2
0
 /// <summary>
 /// BindRegion
 /// </summary>
 /// <param name="origPos"></param>
 /// <param name="riid"></param>
 /// <remarks>
 /// The MSDN specification requires this function to return E_NOTIMPL for the time being.
 /// </remarks>
 public IntPtr BindRegion(FILTERREGION origPos, ref Guid riid)
 {
     throw new NotImplementedException(SR.Get(SRID.FilterBindRegionNotImplemented));
 }
 // Token: 0x06006CA4 RID: 27812 RVA: 0x001F207F File Offset: 0x001F027F
 IntPtr IFilter.BindRegion([In] FILTERREGION origPos, [In] ref Guid riid)
 {
     throw new NotImplementedException(SR.Get("FilterBindRegionNotImplemented"));
 }