Return the header specific header matching with name. Return null if no matching header found.

Namespace:  Microsoft.Rtc.Signaling
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Function 
FindHeader ( _
	
headerName 
As 
String _
) 
As 

SignalingHeader
C#
public 

SignalingHeader 
FindHeader(
	
string 
headerName
)
Visual C++
public:

SignalingHeader^ 
FindHeader(
	
String^ 
headerName
)
JavaScript
function 
findHeader(
headerName);

Parameters

headerName
Type: String
Name of the header to find.

Return Value

Return the header specific header matching with name. Return null if no matching header found.

Remarks

If multiple headers with same name exist in the URI, then it will return the first matching header only. User should use the GetHeaders() function to enumerate all headers.

See Also