Documentation
¶
Index ¶
- Variables
- func EventSubscription2ServerHandle(ctx context.Context, o EventSubscription2Server, opNum int, r ndr.Reader) (dcerpc.Operation, error)
- func NewEventSubscription2ServerHandle(o EventSubscription2Server) dcerpc.ServerHandle
- func RegisterEventSubscription2Server(conn dcerpc.Conn, o EventSubscription2Server, opts ...dcerpc.Option)
- type EventSubscription2Client
- type EventSubscription2Server
- type GetFilterCriteriaRequest
- type GetFilterCriteriaResponse
- type GetSubscriberMonikerRequest
- type GetSubscriberMonikerResponse
- type SetFilterCriteriaRequest
- type SetFilterCriteriaResponse
- type SetSubscriberMonikerRequest
- type SetSubscriberMonikerResponse
- type UnimplementedEventSubscription2Server
- func (UnimplementedEventSubscription2Server) GetFilterCriteria(context.Context, *GetFilterCriteriaRequest) (*GetFilterCriteriaResponse, error)
- func (UnimplementedEventSubscription2Server) GetSubscriberMoniker(context.Context, *GetSubscriberMonikerRequest) (*GetSubscriberMonikerResponse, error)
- func (UnimplementedEventSubscription2Server) SetFilterCriteria(context.Context, *SetFilterCriteriaRequest) (*SetFilterCriteriaResponse, error)
- func (UnimplementedEventSubscription2Server) SetSubscriberMoniker(context.Context, *SetSubscriberMonikerRequest) (*SetSubscriberMonikerResponse, error)
Constants ¶
This section is empty.
Variables ¶
var ( // IEventSubscription2 interface identifier 4a6b0e16-2e38-11d1-9965-00c04fbbb345 EventSubscription2IID = &dcom.IID{Data1: 0x4a6b0e16, Data2: 0x2e38, Data3: 0x11d1, Data4: []byte{0x99, 0x65, 0x00, 0xc0, 0x4f, 0xbb, 0xb3, 0x45}} // Syntax UUID EventSubscription2SyntaxUUID = &uuid.UUID{TimeLow: 0x4a6b0e16, TimeMid: 0x2e38, TimeHiAndVersion: 0x11d1, ClockSeqHiAndReserved: 0x99, ClockSeqLow: 0x65, Node: [6]uint8{0x0, 0xc0, 0x4f, 0xbb, 0xb3, 0x45}} // Syntax ID EventSubscription2SyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: EventSubscription2SyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
var (
// import guard
GoPackage = "dcom/comev"
)
Functions ¶
func NewEventSubscription2ServerHandle ¶
func NewEventSubscription2ServerHandle(o EventSubscription2Server) dcerpc.ServerHandle
func RegisterEventSubscription2Server ¶
func RegisterEventSubscription2Server(conn dcerpc.Conn, o EventSubscription2Server, opts ...dcerpc.Option)
Types ¶
type EventSubscription2Client ¶
type EventSubscription2Client interface {
// IEventSubscription retrieval method.
EventSubscription() ieventsubscription.EventSubscriptionClient
// FilterCriteria operation.
GetFilterCriteria(context.Context, *GetFilterCriteriaRequest, ...dcerpc.CallOption) (*GetFilterCriteriaResponse, error)
// FilterCriteria operation.
SetFilterCriteria(context.Context, *SetFilterCriteriaRequest, ...dcerpc.CallOption) (*SetFilterCriteriaResponse, error)
// SubscriberMoniker operation.
GetSubscriberMoniker(context.Context, *GetSubscriberMonikerRequest, ...dcerpc.CallOption) (*GetSubscriberMonikerResponse, error)
// SubscriberMoniker operation.
SetSubscriberMoniker(context.Context, *SetSubscriberMonikerRequest, ...dcerpc.CallOption) (*SetSubscriberMonikerResponse, 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) EventSubscription2Client
}
IEventSubscription2 interface.
type EventSubscription2Server ¶
type EventSubscription2Server interface {
// IEventSubscription base class.
ieventsubscription.EventSubscriptionServer
// FilterCriteria operation.
GetFilterCriteria(context.Context, *GetFilterCriteriaRequest) (*GetFilterCriteriaResponse, error)
// FilterCriteria operation.
SetFilterCriteria(context.Context, *SetFilterCriteriaRequest) (*SetFilterCriteriaResponse, error)
// SubscriberMoniker operation.
GetSubscriberMoniker(context.Context, *GetSubscriberMonikerRequest) (*GetSubscriberMonikerResponse, error)
// SubscriberMoniker operation.
SetSubscriberMoniker(context.Context, *SetSubscriberMonikerRequest) (*SetSubscriberMonikerResponse, error)
}
IEventSubscription2 server interface.
type GetFilterCriteriaRequest ¶
type GetFilterCriteriaRequest struct {
// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
This *dcom.ORPCThis `idl:"name:This" json:"this"`
}
GetFilterCriteriaRequest structure represents the FilterCriteria operation request
func (*GetFilterCriteriaRequest) MarshalNDR ¶
func (*GetFilterCriteriaRequest) UnmarshalNDR ¶
type GetFilterCriteriaResponse ¶
type GetFilterCriteriaResponse struct {
// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
That *dcom.ORPCThat `idl:"name:That" json:"that"`
FilterCriteria *oaut.String `idl:"name:pbstrFilterCriteria" json:"filter_criteria"`
// Return: The FilterCriteria return value.
Return int32 `idl:"name:Return" json:"return"`
}
GetFilterCriteriaResponse structure represents the FilterCriteria operation response
func (*GetFilterCriteriaResponse) MarshalNDR ¶
func (*GetFilterCriteriaResponse) UnmarshalNDR ¶
type GetSubscriberMonikerRequest ¶
type GetSubscriberMonikerRequest struct {
// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
This *dcom.ORPCThis `idl:"name:This" json:"this"`
}
GetSubscriberMonikerRequest structure represents the SubscriberMoniker operation request
func (*GetSubscriberMonikerRequest) MarshalNDR ¶
func (*GetSubscriberMonikerRequest) UnmarshalNDR ¶
type GetSubscriberMonikerResponse ¶
type GetSubscriberMonikerResponse struct {
// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
That *dcom.ORPCThat `idl:"name:That" json:"that"`
Moniker *oaut.String `idl:"name:pbstrMoniker" json:"moniker"`
// Return: The SubscriberMoniker return value.
Return int32 `idl:"name:Return" json:"return"`
}
GetSubscriberMonikerResponse structure represents the SubscriberMoniker operation response
func (*GetSubscriberMonikerResponse) MarshalNDR ¶
func (*GetSubscriberMonikerResponse) UnmarshalNDR ¶
type SetFilterCriteriaRequest ¶
type SetFilterCriteriaRequest struct {
// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
This *dcom.ORPCThis `idl:"name:This" json:"this"`
FilterCriteria *oaut.String `idl:"name:bstrFilterCriteria" json:"filter_criteria"`
}
SetFilterCriteriaRequest structure represents the FilterCriteria operation request
func (*SetFilterCriteriaRequest) MarshalNDR ¶
func (*SetFilterCriteriaRequest) UnmarshalNDR ¶
type SetFilterCriteriaResponse ¶
type SetFilterCriteriaResponse struct {
// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
That *dcom.ORPCThat `idl:"name:That" json:"that"`
// Return: The FilterCriteria return value.
Return int32 `idl:"name:Return" json:"return"`
}
SetFilterCriteriaResponse structure represents the FilterCriteria operation response
func (*SetFilterCriteriaResponse) MarshalNDR ¶
func (*SetFilterCriteriaResponse) UnmarshalNDR ¶
type SetSubscriberMonikerRequest ¶
type SetSubscriberMonikerRequest struct {
// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
This *dcom.ORPCThis `idl:"name:This" json:"this"`
Moniker *oaut.String `idl:"name:bstrMoniker" json:"moniker"`
}
SetSubscriberMonikerRequest structure represents the SubscriberMoniker operation request
func (*SetSubscriberMonikerRequest) MarshalNDR ¶
func (*SetSubscriberMonikerRequest) UnmarshalNDR ¶
type SetSubscriberMonikerResponse ¶
type SetSubscriberMonikerResponse struct {
// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
That *dcom.ORPCThat `idl:"name:That" json:"that"`
// Return: The SubscriberMoniker return value.
Return int32 `idl:"name:Return" json:"return"`
}
SetSubscriberMonikerResponse structure represents the SubscriberMoniker operation response
func (*SetSubscriberMonikerResponse) MarshalNDR ¶
func (*SetSubscriberMonikerResponse) UnmarshalNDR ¶
type UnimplementedEventSubscription2Server ¶ added in v1.1.5
type UnimplementedEventSubscription2Server struct {
ieventsubscription.UnimplementedEventSubscriptionServer
}
Unimplemented IEventSubscription2
func (UnimplementedEventSubscription2Server) GetFilterCriteria ¶ added in v1.1.5
func (UnimplementedEventSubscription2Server) GetFilterCriteria(context.Context, *GetFilterCriteriaRequest) (*GetFilterCriteriaResponse, error)
func (UnimplementedEventSubscription2Server) GetSubscriberMoniker ¶ added in v1.1.5
func (UnimplementedEventSubscription2Server) GetSubscriberMoniker(context.Context, *GetSubscriberMonikerRequest) (*GetSubscriberMonikerResponse, error)
func (UnimplementedEventSubscription2Server) SetFilterCriteria ¶ added in v1.1.5
func (UnimplementedEventSubscription2Server) SetFilterCriteria(context.Context, *SetFilterCriteriaRequest) (*SetFilterCriteriaResponse, error)
func (UnimplementedEventSubscription2Server) SetSubscriberMoniker ¶ added in v1.1.5
func (UnimplementedEventSubscription2Server) SetSubscriberMoniker(context.Context, *SetSubscriberMonikerRequest) (*SetSubscriberMonikerResponse, error)