IRpcStubBuffer interface
Controls the RPC stub used to marshal data between COM components.
When to implement
You should not need to implement this interface.
When to use
Use this interface if you need low-level control of the RPC stub used to marshal data between COM components.
Members
The IRpcStubBuffer interface inherits from the IUnknown interface. IRpcStubBuffer also has these types of members:
Methods
The IRpcStubBuffer interface has these methods.
| Method | Description |
|---|---|
| Connect |
Initializes a server stub, binding it to the specified interface. |
| CountRefs |
Retrieves the total number of references that a stub has on the server object to which it is connected. |
| DebugServerQueryInterface |
Retrieves a pointer to the interface that a stub represents. |
| DebugServerRelease |
Releases an interface pointer that was previously returned by DebugServerQueryInterface. |
| Disconnect |
Disconnects a server stub from any interface to which it is connected. |
| Invoke |
Invokes the interface that a stub represents. |
| IsIIDSupported |
Determines whether a stub is designed to handle the unmarshaling of a particular interface. |
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps | Windows Store apps] |
|
Header |
|
|
IDL |
|
|
IID |
IID_IRpcStubBuffer is defined as D5F56AFC-593B-101A-B569-08002B2DBF7A |
See also