Class RTCDtlsFingerprint
Represents a fingerprint of a certificate used to authenticate WebRTC communications.
Inheritance
System.Object
RTCDtlsFingerprint
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SIPSorcery.Net
Assembly: SIPSorcery.dll
Syntax
public class RTCDtlsFingerprint
Fields
| Improve this Doc View Sourcealgorithm
One of the hash function algorithms defined in the 'Hash function Textual Names' registry.
Declaration
public string algorithm
Field Value
Type | Description |
---|---|
System.String |
value
The value of the certificate fingerprint in lower-case hex string as expressed utilising the syntax of 'fingerprint' in [RFC4572] Section 5.
Declaration
public string value
Field Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()
|
Improve this Doc
View Source
TryParse(String, out RTCDtlsFingerprint)
Attempts to parse the fingerprint fields from a string.
Declaration
public static bool TryParse(string str, out RTCDtlsFingerprint fingerprint)
Parameters
Type | Name | Description |
---|---|---|
System.String | str | The string to parse from. |
RTCDtlsFingerprint | fingerprint | If successful a fingerprint object. |
Returns
Type | Description |
---|---|
System.Boolean | True if a fingerprint was successfully parsed. False if not. |