Documentation ¶
Index ¶
- Variables
- func NewPropertyDefinitionValueServerHandle(o PropertyDefinitionValueServer) dcerpc.ServerHandle
- func PropertyDefinitionValueServerHandle(ctx context.Context, o PropertyDefinitionValueServer, opNum int, r ndr.Reader) (dcerpc.Operation, error)
- func RegisterPropertyDefinitionValueServer(conn dcerpc.Conn, o PropertyDefinitionValueServer, opts ...dcerpc.Option)
- type GetDescriptionRequest
- type GetDescriptionResponse
- type GetDisplayNameRequest
- type GetDisplayNameResponse
- type GetNameRequest
- type GetNameResponse
- type GetUniqueIDRequest
- type GetUniqueIDResponse
- type PropertyDefinitionValueClient
- type PropertyDefinitionValueServer
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // IFsrmPropertyDefinitionValue interface identifier e946d148-bd67-4178-8e22-1c44925ed710 PropertyDefinitionValueIID = &dcom.IID{Data1: 0xe946d148, Data2: 0xbd67, Data3: 0x4178, Data4: []byte{0x8e, 0x22, 0x1c, 0x44, 0x92, 0x5e, 0xd7, 0x10}} // Syntax UUID PropertyDefinitionValueSyntaxUUID = &uuid.UUID{TimeLow: 0xe946d148, TimeMid: 0xbd67, TimeHiAndVersion: 0x4178, ClockSeqHiAndReserved: 0x8e, ClockSeqLow: 0x22, Node: [6]uint8{0x1c, 0x44, 0x92, 0x5e, 0xd7, 0x10}} // Syntax ID PropertyDefinitionValueSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: PropertyDefinitionValueSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
View Source
var (
// import guard
GoPackage = "dcom/fsrm"
)
Functions ¶
func NewPropertyDefinitionValueServerHandle ¶
func NewPropertyDefinitionValueServerHandle(o PropertyDefinitionValueServer) dcerpc.ServerHandle
func RegisterPropertyDefinitionValueServer ¶
func RegisterPropertyDefinitionValueServer(conn dcerpc.Conn, o PropertyDefinitionValueServer, opts ...dcerpc.Option)
Types ¶
type GetDescriptionRequest ¶
type GetDescriptionRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetDescriptionRequest structure represents the Description operation request
func (*GetDescriptionRequest) MarshalNDR ¶
func (*GetDescriptionRequest) UnmarshalNDR ¶
type GetDescriptionResponse ¶
type GetDescriptionResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Description *oaut.String `idl:"name:description" json:"description"` // Return: The Description return value. Return int32 `idl:"name:Return" json:"return"` }
GetDescriptionResponse structure represents the Description operation response
func (*GetDescriptionResponse) MarshalNDR ¶
func (*GetDescriptionResponse) UnmarshalNDR ¶
type GetDisplayNameRequest ¶
type GetDisplayNameRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetDisplayNameRequest structure represents the DisplayName operation request
func (*GetDisplayNameRequest) MarshalNDR ¶
func (*GetDisplayNameRequest) UnmarshalNDR ¶
type GetDisplayNameResponse ¶
type GetDisplayNameResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` DisplayName *oaut.String `idl:"name:displayName" json:"display_name"` // Return: The DisplayName return value. Return int32 `idl:"name:Return" json:"return"` }
GetDisplayNameResponse structure represents the DisplayName operation response
func (*GetDisplayNameResponse) MarshalNDR ¶
func (*GetDisplayNameResponse) 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:name" 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 GetUniqueIDRequest ¶
type GetUniqueIDRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetUniqueIDRequest structure represents the UniqueID operation request
func (*GetUniqueIDRequest) MarshalNDR ¶
func (*GetUniqueIDRequest) UnmarshalNDR ¶
type GetUniqueIDResponse ¶
type GetUniqueIDResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // uniqueID: Pointer to a variable that, upon completion, contains the Property Value // Definition.UniqueId of the property definition value. UniqueID *oaut.String `idl:"name:uniqueID" json:"unique_id"` // Return: The UniqueID return value. Return int32 `idl:"name:Return" json:"return"` }
GetUniqueIDResponse structure represents the UniqueID operation response
func (*GetUniqueIDResponse) MarshalNDR ¶
func (*GetUniqueIDResponse) UnmarshalNDR ¶
type PropertyDefinitionValueClient ¶
type PropertyDefinitionValueClient interface { // IDispatch retrieval method. Dispatch() idispatch.DispatchClient // Name operation. GetName(context.Context, *GetNameRequest, ...dcerpc.CallOption) (*GetNameResponse, error) // DisplayName operation. GetDisplayName(context.Context, *GetDisplayNameRequest, ...dcerpc.CallOption) (*GetDisplayNameResponse, error) // Description operation. GetDescription(context.Context, *GetDescriptionRequest, ...dcerpc.CallOption) (*GetDescriptionResponse, error) // The UniqueID (get) method returns the Property Value Definition.UniqueId of the property // definition value. // // Return Values: The method MUST return zero on success, or a nonzero error code on // failure. // // +-------------------------+---------------------------------+ // | RETURN | | // | VALUE/CODE | DESCRIPTION | // | | | // +-------------------------+---------------------------------+ // +-------------------------+---------------------------------+ // | 0x80070057 E_INVALIDARG | The uniqueID parameter is NULL. | // +-------------------------+---------------------------------+ GetUniqueID(context.Context, *GetUniqueIDRequest, ...dcerpc.CallOption) (*GetUniqueIDResponse, error) // AlterContext alters the client context. AlterContext(context.Context, ...dcerpc.Option) error // IPID sets the object interface identifier. IPID(context.Context, *dcom.IPID) PropertyDefinitionValueClient }
IFsrmPropertyDefinitionValue interface.
type PropertyDefinitionValueServer ¶
type PropertyDefinitionValueServer interface { // IDispatch base class. idispatch.DispatchServer // Name operation. GetName(context.Context, *GetNameRequest) (*GetNameResponse, error) // DisplayName operation. GetDisplayName(context.Context, *GetDisplayNameRequest) (*GetDisplayNameResponse, error) // Description operation. GetDescription(context.Context, *GetDescriptionRequest) (*GetDescriptionResponse, error) // The UniqueID (get) method returns the Property Value Definition.UniqueId of the property // definition value. // // Return Values: The method MUST return zero on success, or a nonzero error code on // failure. // // +-------------------------+---------------------------------+ // | RETURN | | // | VALUE/CODE | DESCRIPTION | // | | | // +-------------------------+---------------------------------+ // +-------------------------+---------------------------------+ // | 0x80070057 E_INVALIDARG | The uniqueID parameter is NULL. | // +-------------------------+---------------------------------+ GetUniqueID(context.Context, *GetUniqueIDRequest) (*GetUniqueIDResponse, error) }
IFsrmPropertyDefinitionValue server interface.
Click to show internal directories.
Click to hide internal directories.