Show / Hide Table of Contents

Class IfNoneMatchHeader

Class that represents the HTTP If-None-Match header

Inheritance
Object
IfNoneMatchHeader
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace:FubarDev.WebDavServer.Model.Headers
Assembly:FubarDev.WebDavServer.dll
Syntax
public class IfNoneMatchHeader

Methods

| Improve this Doc View Source

IsMatch(Nullable<EntityTag>)

Returns a value that indicates whether the etag is not specified in the If-None-Match header

Declaration
public bool IsMatch(EntityTag? etag)
Parameters
Type Name Description
Nullable<EntityTag> etag

The entity tag to search for

Returns
Type Description
Boolean

true when the etag was not found

| Improve this Doc View Source

Parse(IEnumerable<String>)

Parses the header string to get a new instance of the IfNoneMatchHeader class

Declaration
[NotNull]
public static IfNoneMatchHeader Parse([NotNull, ItemNotNull] IEnumerable<string> s)
Parameters
Type Name Description
IEnumerable<String> s

The header values to parse

Returns
Type Description
IfNoneMatchHeader

The new instance of the IfNoneMatchHeader class

| Improve this Doc View Source

Parse(IEnumerable<String>, EntityTagComparer)

Parses the header string to get a new instance of the IfNoneMatchHeader class

Declaration
[NotNull]
public static IfNoneMatchHeader Parse([NotNull, ItemNotNull] IEnumerable<string> s, [NotNull] EntityTagComparer etagComparer)
Parameters
Type Name Description
IEnumerable<String> s

The header values to parse

EntityTagComparer etagComparer

The entity tag comparer used for the IsMatch(Nullable<EntityTag>) function

Returns
Type Description
IfNoneMatchHeader

The new instance of the IfNoneMatchHeader class

| Improve this Doc View Source

Parse(String)

Parses the header string to get a new instance of the IfNoneMatchHeader class

Declaration
[NotNull]
public static IfNoneMatchHeader Parse([CanBeNull] string s)
Parameters
Type Name Description
String s

The header string to parse

Returns
Type Description
IfNoneMatchHeader

The new instance of the IfNoneMatchHeader class

| Improve this Doc View Source

Parse(String, EntityTagComparer)

Parses the header string to get a new instance of the IfNoneMatchHeader class

Declaration
[NotNull]
public static IfNoneMatchHeader Parse([CanBeNull] string s, [NotNull] EntityTagComparer etagComparer)
Parameters
Type Name Description
String s

The header string to parse

EntityTagComparer etagComparer

The entity tag comparer used for the IsMatch(Nullable<EntityTag>) function

Returns
Type Description
IfNoneMatchHeader

The new instance of the IfNoneMatchHeader class

  • Improve this Doc
  • View Source
Back to top Copyright © 2016-2017 Fubar Development Junker
Generated by DocFX