Documentation ¶
Index ¶
- Variables
- func AppHostChildElementCollectionServerHandle(ctx context.Context, o AppHostChildElementCollectionServer, opNum int, ...) (dcerpc.Operation, error)
- func NewAppHostChildElementCollectionServerHandle(o AppHostChildElementCollectionServer) dcerpc.ServerHandle
- func RegisterAppHostChildElementCollectionServer(conn dcerpc.Conn, o AppHostChildElementCollectionServer, opts ...dcerpc.Option)
- type AppHostChildElementCollectionClient
- type AppHostChildElementCollectionServer
- type GetCountRequest
- type GetCountResponse
- type GetItemRequest
- type GetItemResponse
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // IAppHostChildElementCollection interface identifier 08a90f5f-0702-48d6-b45f-02a9885a9768 AppHostChildElementCollectionIID = &dcom.IID{Data1: 0x08a90f5f, Data2: 0x0702, Data3: 0x48d6, Data4: []byte{0xb4, 0x5f, 0x02, 0xa9, 0x88, 0x5a, 0x97, 0x68}} // Syntax UUID AppHostChildElementCollectionSyntaxUUID = &uuid.UUID{TimeLow: 0x8a90f5f, TimeMid: 0x702, TimeHiAndVersion: 0x48d6, ClockSeqHiAndReserved: 0xb4, ClockSeqLow: 0x5f, Node: [6]uint8{0x2, 0xa9, 0x88, 0x5a, 0x97, 0x68}} // Syntax ID AppHostChildElementCollectionSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: AppHostChildElementCollectionSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
View Source
var (
// import guard
GoPackage = "dcom/iisa"
)
Functions ¶
func NewAppHostChildElementCollectionServerHandle ¶
func NewAppHostChildElementCollectionServerHandle(o AppHostChildElementCollectionServer) dcerpc.ServerHandle
func RegisterAppHostChildElementCollectionServer ¶
func RegisterAppHostChildElementCollectionServer(conn dcerpc.Conn, o AppHostChildElementCollectionServer, opts ...dcerpc.Option)
Types ¶
type AppHostChildElementCollectionClient ¶
type AppHostChildElementCollectionClient interface { // IUnknown retrieval method. Unknown() iunknown.UnknownClient // Count operation. GetCount(context.Context, *GetCountRequest, ...dcerpc.CallOption) (*GetCountResponse, error) // Item operation. GetItem(context.Context, *GetItemRequest, ...dcerpc.CallOption) (*GetItemResponse, error) // AlterContext alters the client context. AlterContext(context.Context, ...dcerpc.Option) error // Conn returns the client connection (unsafe) Conn() dcerpc.Conn // IPID sets the object interface identifier. IPID(context.Context, *dcom.IPID) AppHostChildElementCollectionClient }
IAppHostChildElementCollection interface.
type AppHostChildElementCollectionServer ¶
type AppHostChildElementCollectionServer interface { // IUnknown base class. iunknown.UnknownServer // Count operation. GetCount(context.Context, *GetCountRequest) (*GetCountResponse, error) // Item operation. GetItem(context.Context, *GetItemRequest) (*GetItemResponse, error) }
IAppHostChildElementCollection server interface.
type GetCountRequest ¶
type GetCountRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetCountRequest structure represents the Count operation request
func (*GetCountRequest) MarshalNDR ¶
func (*GetCountRequest) UnmarshalNDR ¶
type GetCountResponse ¶
type GetCountResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Count uint32 `idl:"name:pcCount" json:"count"` // Return: The Count return value. Return int32 `idl:"name:Return" json:"return"` }
GetCountResponse structure represents the Count operation response
func (*GetCountResponse) MarshalNDR ¶
func (*GetCountResponse) UnmarshalNDR ¶
type GetItemRequest ¶
type GetItemRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Index *oaut.Variant `idl:"name:cIndex" json:"index"` }
GetItemRequest structure represents the Item operation request
func (*GetItemRequest) MarshalNDR ¶
func (*GetItemRequest) UnmarshalNDR ¶
type GetItemResponse ¶
type GetItemResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Element *iisa.AppHostElement `idl:"name:ppElement" json:"element"` // Return: The Item return value. Return int32 `idl:"name:Return" json:"return"` }
GetItemResponse structure represents the Item operation response
func (*GetItemResponse) MarshalNDR ¶
func (*GetItemResponse) UnmarshalNDR ¶
Click to show internal directories.
Click to hide internal directories.