Method | Description | |
---|---|---|
NamePrep ( string input ) : string |
Preps a name according to the Stringprep profile defined in RFC3491. Unassigned code points are not allowed. *
|
|
NamePrep ( string input, bool allowUnassigned ) : string |
Preps a name according to the Stringprep profile defined in RFC3491. *
|
|
NodePrep ( string input ) : string |
Preps a node name according to the Stringprep profile defined in RFC3920. Unassigned code points are not allowed. *
|
|
NodePrep ( string input, bool allowUnassigned ) : string |
Preps a node name according to the Stringprep profile defined in RFC3920.
|
|
ResourcePrep ( string input ) : string |
Preps a resource name according to the Stringprep profile defined in RFC3920. Unassigned code points are not allowed.
|
|
ResourcePrep ( string input, bool allowUnassigned ) : string |
Preps a resource name according to the Stringprep profile defined in RFC3920.
|
Method | Description | |
---|---|---|
Contains ( StringBuilder s, char p ) : bool | ||
Contains ( char c, char p ) : bool | ||
Filter ( StringBuilder s, char f ) : void | ||
Map ( StringBuilder s, char search, string replace ) : void |
public static NamePrep ( string input ) : string | ||
input | string | the name to prep. /// |
return | string |
public static NamePrep ( string input, bool allowUnassigned ) : string | ||
input | string | the name to prep. /// |
allowUnassigned | bool | true if the name may contain unassigned /// code points. /// |
return | string |
public static NodePrep ( string input ) : string | ||
input | string | the node name to prep. /// |
return | string |
public static NodePrep ( string input, bool allowUnassigned ) : string | ||
input | string | the node name to prep. /// |
allowUnassigned | bool | true if the node name may contain /// unassigned code points. /// |
return | string |
public static ResourcePrep ( string input ) : string | ||
input | string | the resource name to prep. /// |
return | string |
public static ResourcePrep ( string input, bool allowUnassigned ) : string | ||
input | string | the resource name to prep. /// |
allowUnassigned | bool | true if the resource name may contain /// unassigned code points. /// |
return | string |