Request Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Request() |
The Request constructor creates an instance of a Request object. |
Request(Request+StandardMethodType) |
Creates a new request with the specified standard method type. |
Request(String) |
Creates a new request with the specified method type. |
Request(Request+StandardMethodType, String) |
Creates a new request with the specified standard method type and target URI. |
Request(String, String) |
Creates a new request with the specified method type and target URI. |
Request()
The Request constructor creates an instance of a Request object.
public:
Request();
public Request ();
Public Sub New ()
Applies to
Request(Request+StandardMethodType)
Creates a new request with the specified standard method type.
public:
Request(Microsoft::Rtc::Sip::Request::StandardMethodType method);
public Request (Microsoft.Rtc.Sip.Request.StandardMethodType method);
Public Sub New (method As Request.StandardMethodType)
Parameters
- method
- Request.StandardMethodType
Applies to
Request(String)
Creates a new request with the specified method type.
public:
Request(System::String ^ method);
public Request (string method);
Public Sub New (method As String)
Parameters
- method
- String
Applies to
Request(Request+StandardMethodType, String)
Creates a new request with the specified standard method type and target URI.
public:
Request(Microsoft::Rtc::Sip::Request::StandardMethodType method, System::String ^ requestUri);
public Request (Microsoft.Rtc.Sip.Request.StandardMethodType method, string requestUri);
Public Sub New (method As Request.StandardMethodType, requestUri As String)
Parameters
- method
- Request.StandardMethodType
- requestUri
- String
Applies to
Request(String, String)
Creates a new request with the specified method type and target URI.
public:
Request(System::String ^ method, System::String ^ requestUri);
public Request (string method, string requestUri);
Public Sub New (method As String, requestUri As String)
Parameters
- method
- String
- requestUri
- String