Documentation ¶
Index ¶
- Variables
- func AppHostMethodSchemaServerHandle(ctx context.Context, o AppHostMethodSchemaServer, opNum int, r ndr.Reader) (dcerpc.Operation, error)
- func NewAppHostMethodSchemaServerHandle(o AppHostMethodSchemaServer) dcerpc.ServerHandle
- func RegisterAppHostMethodSchemaServer(conn dcerpc.Conn, o AppHostMethodSchemaServer, opts ...dcerpc.Option)
- type AppHostMethodSchemaClient
- type AppHostMethodSchemaServer
- type GetInputSchemaRequest
- type GetInputSchemaResponse
- type GetMetadataRequest
- type GetMetadataResponse
- type GetNameRequest
- type GetNameResponse
- type GetOutputSchemaRequest
- type GetOutputSchemaResponse
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // IAppHostMethodSchema interface identifier 2d9915fb-9d42-4328-b782-1b46819fab9e AppHostMethodSchemaIID = &dcom.IID{Data1: 0x2d9915fb, Data2: 0x9d42, Data3: 0x4328, Data4: []byte{0xb7, 0x82, 0x1b, 0x46, 0x81, 0x9f, 0xab, 0x9e}} // Syntax UUID AppHostMethodSchemaSyntaxUUID = &uuid.UUID{TimeLow: 0x2d9915fb, TimeMid: 0x9d42, TimeHiAndVersion: 0x4328, ClockSeqHiAndReserved: 0xb7, ClockSeqLow: 0x82, Node: [6]uint8{0x1b, 0x46, 0x81, 0x9f, 0xab, 0x9e}} // Syntax ID AppHostMethodSchemaSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: AppHostMethodSchemaSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
View Source
var (
// import guard
GoPackage = "dcom/iisa"
)
Functions ¶
func NewAppHostMethodSchemaServerHandle ¶
func NewAppHostMethodSchemaServerHandle(o AppHostMethodSchemaServer) dcerpc.ServerHandle
func RegisterAppHostMethodSchemaServer ¶
func RegisterAppHostMethodSchemaServer(conn dcerpc.Conn, o AppHostMethodSchemaServer, opts ...dcerpc.Option)
Types ¶
type AppHostMethodSchemaClient ¶
type AppHostMethodSchemaClient interface { // IUnknown retrieval method. Unknown() iunknown.UnknownClient // Name operation. GetName(context.Context, *GetNameRequest, ...dcerpc.CallOption) (*GetNameResponse, error) // InputSchema operation. GetInputSchema(context.Context, *GetInputSchemaRequest, ...dcerpc.CallOption) (*GetInputSchemaResponse, error) // OutputSchema operation. GetOutputSchema(context.Context, *GetOutputSchemaRequest, ...dcerpc.CallOption) (*GetOutputSchemaResponse, error) // GetMetadata operation. GetMetadata(context.Context, *GetMetadataRequest, ...dcerpc.CallOption) (*GetMetadataResponse, error) // AlterContext alters the client context. AlterContext(context.Context, ...dcerpc.Option) error // IPID sets the object interface identifier. IPID(context.Context, *dcom.IPID) AppHostMethodSchemaClient }
IAppHostMethodSchema interface.
type AppHostMethodSchemaServer ¶
type AppHostMethodSchemaServer interface { // IUnknown base class. iunknown.UnknownServer // Name operation. GetName(context.Context, *GetNameRequest) (*GetNameResponse, error) // InputSchema operation. GetInputSchema(context.Context, *GetInputSchemaRequest) (*GetInputSchemaResponse, error) // OutputSchema operation. GetOutputSchema(context.Context, *GetOutputSchemaRequest) (*GetOutputSchemaResponse, error) // GetMetadata operation. GetMetadata(context.Context, *GetMetadataRequest) (*GetMetadataResponse, error) }
IAppHostMethodSchema server interface.
type GetInputSchemaRequest ¶
type GetInputSchemaRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetInputSchemaRequest structure represents the InputSchema operation request
func (*GetInputSchemaRequest) MarshalNDR ¶
func (*GetInputSchemaRequest) UnmarshalNDR ¶
type GetInputSchemaResponse ¶
type GetInputSchemaResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` InputSchema *iisa.AppHostElementSchema `idl:"name:ppInputSchema" json:"input_schema"` // Return: The InputSchema return value. Return int32 `idl:"name:Return" json:"return"` }
GetInputSchemaResponse structure represents the InputSchema operation response
func (*GetInputSchemaResponse) MarshalNDR ¶
func (*GetInputSchemaResponse) UnmarshalNDR ¶
type GetMetadataRequest ¶
type GetMetadataRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` MetadataType *oaut.String `idl:"name:bstrMetadataType" json:"metadata_type"` }
GetMetadataRequest structure represents the GetMetadata operation request
func (*GetMetadataRequest) MarshalNDR ¶
func (*GetMetadataRequest) UnmarshalNDR ¶
type GetMetadataResponse ¶
type GetMetadataResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Value *oaut.Variant `idl:"name:pValue" json:"value"` // Return: The GetMetadata return value. Return int32 `idl:"name:Return" json:"return"` }
GetMetadataResponse structure represents the GetMetadata operation response
func (*GetMetadataResponse) MarshalNDR ¶
func (*GetMetadataResponse) UnmarshalNDR ¶
type GetNameRequest ¶
type GetNameRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetNameRequest structure represents the Name operation request
func (*GetNameRequest) MarshalNDR ¶
func (*GetNameRequest) UnmarshalNDR ¶
type GetNameResponse ¶
type GetNameResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Name *oaut.String `idl:"name:pbstrName" json:"name"` // Return: The Name return value. Return int32 `idl:"name:Return" json:"return"` }
GetNameResponse structure represents the Name operation response
func (*GetNameResponse) MarshalNDR ¶
func (*GetNameResponse) UnmarshalNDR ¶
type GetOutputSchemaRequest ¶
type GetOutputSchemaRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetOutputSchemaRequest structure represents the OutputSchema operation request
func (*GetOutputSchemaRequest) MarshalNDR ¶
func (*GetOutputSchemaRequest) UnmarshalNDR ¶
type GetOutputSchemaResponse ¶
type GetOutputSchemaResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` OutputSchema *iisa.AppHostElementSchema `idl:"name:ppOutputSchema" json:"output_schema"` // Return: The OutputSchema return value. Return int32 `idl:"name:Return" json:"return"` }
GetOutputSchemaResponse structure represents the OutputSchema operation response
func (*GetOutputSchemaResponse) MarshalNDR ¶
func (*GetOutputSchemaResponse) UnmarshalNDR ¶
Click to show internal directories.
Click to hide internal directories.