'Declaration
Public Function New( _ ByVal protocolName As String, _ ByVal transportProfileUri As Uri, _ ByVal messageSecurityModes As UAMessageSecurityModes, _ ByVal securityPolicyUri As Uri, _ ByVal dataEncodingName As String _ )
'Usage
Dim protocolName As String Dim transportProfileUri As Uri Dim messageSecurityModes As UAMessageSecurityModes Dim securityPolicyUri As Uri Dim dataEncodingName As String Dim instance As New UACommunicationProfile(protocolName, transportProfileUri, messageSecurityModes, securityPolicyUri, dataEncodingName)
public UACommunicationProfile( string protocolName, Uri transportProfileUri, UAMessageSecurityModes messageSecurityModes, Uri securityPolicyUri, string dataEncodingName )
public: UACommunicationProfile( String^ protocolName, Uri^ transportProfileUri, UAMessageSecurityModes messageSecurityModes, Uri^ securityPolicyUri, String^ dataEncodingName )
Parameters
- protocolName
- Specifies the name of the protocol of the endpoint.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - transportProfileUri
- When not a null reference, specifies the transport profile of the endpoint.
The value of this parameter can be
null
(Nothing
in Visual Basic). - messageSecurityModes
- Specifies which message security modes are used.
- securityPolicyUri
- When not a null reference, specifies the security policy URI of the endpoint.
The value of this parameter can be
null
(Nothing
in Visual Basic). - dataEncodingName
- The name of the data encoding of the endpoint.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).