SobekCM.Core.Configuration.Engine.Engine_VerbMapping.Engine_VerbMapping C# (CSharp) Method

Engine_VerbMapping() public method

Constructor for a new instance of the Engine_VerbMapping class
public Engine_VerbMapping ( string Method, bool Enabled, Microservice_Endpoint_Protocol_Enum Protocol, Microservice_Endpoint_RequestType_Enum RequestType, string ComponentId, string RestrictionRangeId ) : System
Method string Method within the class specified by the component that should be called to fulfil the request
Enabled bool Flag indicates if this endpoint is enabled or disabled
Protocol Microservice_Endpoint_Protocol_Enum Protocol which this endpoint utilizes ( JSON or Protocol Buffer )
RequestType Microservice_Endpoint_RequestType_Enum Request type expected for this endpoint ( either a GET or a POST )
ComponentId string
RestrictionRangeId string
return System
        public Engine_VerbMapping(string Method, bool Enabled, Microservice_Endpoint_Protocol_Enum Protocol, Microservice_Endpoint_RequestType_Enum RequestType, string ComponentId, string RestrictionRangeId )
        {
            this.Method = Method;
            this.Enabled = Enabled;
            this.Protocol = Protocol;
            this.RequestType = RequestType;
            this.ComponentId = ComponentId;
            this.RestrictionRangeSetId = RestrictionRangeId;
        }

Same methods

Engine_VerbMapping::Engine_VerbMapping ( ) : System
Engine_VerbMapping::Engine_VerbMapping ( string Method, bool Enabled, Microservice_Endpoint_Protocol_Enum Protocol, Microservice_Endpoint_RequestType_Enum RequestType ) : System