ServiceStack.RequestAttributesExtensions.ToSoapFeature C# (CSharp) Method

ToSoapFeature() public static method

public static ToSoapFeature ( this attributes ) : Feature
attributes this
return Feature
        public static Feature ToSoapFeature(this RequestAttributes attributes)
        {
            if ((RequestAttributes.Soap11 & attributes) == RequestAttributes.Soap11)
                return Feature.Soap11;
            if ((RequestAttributes.Soap12 & attributes) == RequestAttributes.Soap12)
                return Feature.Soap12;            
            return Feature.None;
        }
    }