SYMBOL INDEX (284 symbols across 74 files) FILE: src/SwaggerWcf.Test.Service/AuthorService.cs class AuthorService (line 10) | [SwaggerWcf("/v1/authors")] method Get (line 29) | [SwaggerWcfTag("GenericAuthor")] method Create (line 35) | [SwaggerWcfTag("GenericAuthor")] method Update (line 41) | [SwaggerWcfTag("GenericAuthor")] method Delete (line 47) | [SwaggerWcfTag("GenericAuthor")] FILE: src/SwaggerWcf.Test.Service/BaseService.cs class BaseService (line 9) | public abstract class BaseService : IBaseService, IBaseCRUDService method Create (line 11) | public abstract T Create(T item); method Delete (line 12) | public abstract T Delete(string id); method Get (line 13) | public abstract T Get(string id); method Update (line 14) | public abstract T Update(string id, T item); method TestService (line 16) | public virtual string TestService(string input) method TestServicePost (line 21) | public string TestServicePost(string input, string postObj) FILE: src/SwaggerWcf.Test.Service/Data/Author.cs class Author (line 6) | [DataContract] FILE: src/SwaggerWcf.Test.Service/Data/Book.cs class Book (line 7) | [DataContract] FILE: src/SwaggerWcf.Test.Service/Data/Language.cs type Language (line 6) | [DataContract(Name = "language")] FILE: src/SwaggerWcf.Test.Service/Data/Store.cs class Store (line 6) | public class Store method Store (line 8) | static Store() FILE: src/SwaggerWcf.Test.Service/Global.asax.cs class Global (line 10) | public class Global : HttpApplication method Application_Start (line 12) | protected void Application_Start(object sender, EventArgs e) method FilterVisibleTags (line 27) | private static List FilterVisibleTags(string path, List FilterHiddenTags(string path, List... method Session_Start (line 37) | protected void Session_Start(object sender, EventArgs e) method Application_BeginRequest (line 41) | protected void Application_BeginRequest(object sender, EventArgs e) method Application_AuthenticateRequest (line 45) | protected void Application_AuthenticateRequest(object sender, EventArg... method Application_Error (line 49) | protected void Application_Error(object sender, EventArgs e) method Session_End (line 53) | protected void Session_End(object sender, EventArgs e) method Application_End (line 57) | protected void Application_End(object sender, EventArgs e) FILE: src/SwaggerWcf.Test.Service/IAuthorService.cs type IAuthorService (line 10) | [ServiceContract] FILE: src/SwaggerWcf.Test.Service/IBaseCRUDService.cs type IBaseCRUDService (line 12) | [ServiceContract] method Get (line 15) | [SwaggerWcfPath("Get Operation")] method Create (line 23) | [SwaggerWcfPath("Create Operation")] method Update (line 31) | [SwaggerWcfPath("Update Operation")] method Delete (line 39) | [SwaggerWcfPath("Delete Operation")] FILE: src/SwaggerWcf.Test.Service/IBaseService.cs type IBaseService (line 12) | [ServiceContract] method TestService (line 15) | [SwaggerWcfPath("Test Service")] method TestServicePost (line 23) | [SwaggerWcfPath("Test Service")] FILE: src/SwaggerWcf.Test.Service/IStore.cs type IStore (line 11) | [ServiceContract] method CreateBook (line 15) | [SwaggerWcfPath("Create book", "Create a book on the store")] method ReadBooks (line 22) | [SwaggerWcfPath("Get books", "Retrieve all books from the store")] method ReadBook (line 27) | [SwaggerWcfPath("Get book", "Retrieve a book from the store using its ... method UpdateBook (line 33) | [SwaggerWcfPath("Update book", "Update a book on the store")] method DeleteBook (line 42) | [SwaggerWcfPath("Delete book", "Delete a book on the store")] method ReadBookAuthor (line 47) | [SwaggerWcfPath("Get book author", "Retrieve the author of a book usin... method CreateAuthor (line 58) | [SwaggerWcfPath("Create author", "Create an author on the store")] method ReadAuthors (line 65) | [SwaggerWcfPath("Get authors", "Retrieve all authors from the store")] method ReadAuthor (line 70) | [SwaggerWcfPath("Get author", "Retrieve an author from the store using... method UpdateAuthor (line 77) | [SwaggerWcfPath("Update author", "Update an author on the store")] method DeleteAuthor (line 87) | [SwaggerWcfPath("Delete author", "Delete an author on the store")] method ReadAuthorBooks (line 92) | [SwaggerWcfPath("Get author books", "Retrieve the author books using t... method CreateLanguage (line 103) | [SwaggerWcfPath("Create language", "Create an language on the store")] method ReadLanguages (line 110) | [SwaggerWcfPath("Get languages", "Retrieve all languages from the stor... method ReadLanguage (line 115) | [SwaggerWcfPath("Get language", "Retrieve an language from the store u... method UpdateLanguage (line 122) | [SwaggerWcfPath("Update language", "Update an language on the store")] method DeleteLanguage (line 132) | [SwaggerWcfPath("Delete language", "Delete an language on the store")] FILE: src/SwaggerWcf.Test.Service/Store.svc.cs class BookStore (line 11) | [SwaggerWcf("/v1/rest")] method CreateBook (line 32) | [SwaggerWcfTag("Books")] method ReadBook (line 75) | [SwaggerWcfTag("Books")] method ReadBooks (line 104) | [SwaggerWcfTag("Books")] method UpdateBook (line 126) | [SwaggerWcfTag("Books")] method DeleteBook (line 162) | [SwaggerWcfTag("Books")] method ReadBookAuthor (line 190) | [SwaggerWcfTag("LowPerformance", true)] method CreateAuthor (line 231) | [SwaggerWcfTag("Authors")] method ReadAuthor (line 262) | [SwaggerWcfTag("Authors")] method ReadAuthors (line 290) | [SwaggerWcfTag("Authors")] method UpdateAuthor (line 310) | [SwaggerWcfTag("Authors")] method DeleteAuthor (line 345) | [SwaggerWcfTag("Authors")] method ReadAuthorBooks (line 372) | [SwaggerWcfTag("LowPerformance", true)] method CreateLanguage (line 413) | [SwaggerWcfHidden] method ReadLanguage (line 423) | [SwaggerWcfHidden] method ReadLanguages (line 433) | [SwaggerWcfTag("Languages")] method UpdateLanguage (line 447) | [SwaggerWcfHidden] method DeleteLanguage (line 458) | [SwaggerWcfHidden] FILE: src/SwaggerWcf/Attributes/SwaggerWcfAttribute.cs class SwaggerWcfAttribute (line 8) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)] method SwaggerWcfAttribute (line 21) | public SwaggerWcfAttribute() method SwaggerWcfAttribute (line 29) | public SwaggerWcfAttribute(string servicePath) FILE: src/SwaggerWcf/Attributes/SwaggerWcfContactInfoAttribute.cs class SwaggerWcfContactInfoAttribute (line 9) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)] FILE: src/SwaggerWcf/Attributes/SwaggerWcfContentTypesAttribute.cs class SwaggerWcfContentTypesAttribute (line 9) | [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] method SwaggerWcfContentTypesAttribute (line 16) | public SwaggerWcfContentTypesAttribute(string[] consumeTypes = null, s... FILE: src/SwaggerWcf/Attributes/SwaggerWcfDefinitionAttribute.cs class SwaggerWcfDefinitionAttribute (line 8) | [AttributeUsage(AttributeTargets.Class)] method SwaggerWcfDefinitionAttribute (line 31) | public SwaggerWcfDefinitionAttribute(string externalDocsDescription = ... FILE: src/SwaggerWcf/Attributes/SwaggerWcfHeaderAttribute.cs class SwaggerWcfHeaderAttribute (line 8) | [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] method SwaggerWcfHeaderAttribute (line 18) | public SwaggerWcfHeaderAttribute(string name, bool required = false, s... FILE: src/SwaggerWcf/Attributes/SwaggerWcfHiddenAttribute.cs class SwaggerWcfHiddenAttribute (line 9) | [AttributeUsage( FILE: src/SwaggerWcf/Attributes/SwaggerWcfLicenseInfoAttribute.cs class SwaggerWcfLicenseInfoAttribute (line 9) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)] method SwaggerWcfLicenseInfoAttribute (line 26) | public SwaggerWcfLicenseInfoAttribute(string name) FILE: src/SwaggerWcf/Attributes/SwaggerWcfParameterAttribute.cs class SwaggerWcfParameterAttribute (line 8) | [AttributeUsage(AttributeTargets.Parameter)] method SwaggerWcfParameterAttribute (line 16) | public SwaggerWcfParameterAttribute(bool required = false, string desc... FILE: src/SwaggerWcf/Attributes/SwaggerWcfPathAttribute.cs class SwaggerWcfPathAttribute (line 8) | [AttributeUsage(AttributeTargets.Method)] method SwaggerWcfPathAttribute (line 20) | public SwaggerWcfPathAttribute(string summary = null, string descripti... FILE: src/SwaggerWcf/Attributes/SwaggerWcfPropertyAttribute.cs class SwaggerWcfPropertyAttribute (line 11) | [AttributeUsage(AttributeTargets.Property, AllowMultiple = true)] method SwaggerWcfPropertyAttribute (line 17) | public SwaggerWcfPropertyAttribute() FILE: src/SwaggerWcf/Attributes/SwaggerWcfRegexAttribute.cs class SwaggerWcfRegexAttribute (line 8) | [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Allo... method SwaggerWcfRegexAttribute (line 15) | public SwaggerWcfRegexAttribute(string regex) FILE: src/SwaggerWcf/Attributes/SwaggerWcfRequestTypeAttribute.cs class SwaggerWcfRequestTypeAttribute (line 9) | [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] method SwaggerWcfRequestTypeAttribute (line 16) | public SwaggerWcfRequestTypeAttribute(string name = null) FILE: src/SwaggerWcf/Attributes/SwaggerWcfResponseAttribute.cs class SwaggerWcfResponseAttribute (line 9) | [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] method SwaggerWcfResponseAttribute (line 22) | public SwaggerWcfResponseAttribute(string code, string description = n... method SwaggerWcfResponseAttribute (line 45) | public SwaggerWcfResponseAttribute(HttpStatusCode code, string descrip... method SwaggerWcfResponseAttribute (line 71) | public SwaggerWcfResponseAttribute(int code, string description = null... method Equals (line 119) | public override bool Equals(object obj) method GetHashCode (line 135) | public override int GetHashCode() FILE: src/SwaggerWcf/Attributes/SwaggerWcfReturnTypeAttribute.cs class SwaggerWcfReturnTypeAttribute (line 9) | [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] method SwaggerWcfReturnTypeAttribute (line 17) | public SwaggerWcfReturnTypeAttribute(Type returnType = null, string na... FILE: src/SwaggerWcf/Attributes/SwaggerWcfSecurityAttribute.cs class SwaggerWcfSecurityAttribute (line 8) | [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] method SwaggerWcfSecurityAttribute (line 16) | public SwaggerWcfSecurityAttribute(string securityDefinitionName, para... FILE: src/SwaggerWcf/Attributes/SwaggerWcfServiceInfoAttribute.cs class SwaggerWcfServiceInfoAttribute (line 9) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)] method SwaggerWcfServiceInfoAttribute (line 37) | public SwaggerWcfServiceInfoAttribute(string title, string version) FILE: src/SwaggerWcf/Attributes/SwaggerWcfTagAttribute.cs class SwaggerWcfTagAttribute (line 9) | [AttributeUsage( method SwaggerWcfTagAttribute (line 19) | public SwaggerWcfTagAttribute(string name, bool hideFromSpec = false) FILE: src/SwaggerWcf/Configuration/SettingCollection.cs class SettingCollection (line 6) | [ConfigurationCollection(typeof(TagElement), AddItemName = "setting")] method CreateNewElement (line 9) | protected override ConfigurationElement CreateNewElement() method GetElementKey (line 14) | protected override object GetElementKey(ConfigurationElement element) FILE: src/SwaggerWcf/Configuration/SettingElement.cs class SettingElement (line 5) | public class SettingElement : ConfigurationElement FILE: src/SwaggerWcf/Configuration/SwaggerWcfSection.cs class SwaggerWcfSection (line 5) | public class SwaggerWcfSection : ConfigurationSection FILE: src/SwaggerWcf/Configuration/TagCollection.cs class TagCollection (line 6) | [ConfigurationCollection(typeof(TagElement), AddItemName = "tag")] method CreateNewElement (line 9) | protected override ConfigurationElement CreateNewElement() method GetElementKey (line 14) | protected override object GetElementKey(ConfigurationElement element) FILE: src/SwaggerWcf/Configuration/TagElement.cs class TagElement (line 5) | public class TagElement : ConfigurationElement FILE: src/SwaggerWcf/ISwaggerWcfEndpoint.cs type ISwaggerWcfEndpoint (line 7) | [ServiceContract] method GetSwaggerFile (line 10) | [OperationContract] method StaticContent (line 14) | [OperationContract] FILE: src/SwaggerWcf/Models/CollectionFormat.cs type CollectionFormat (line 3) | public enum CollectionFormat FILE: src/SwaggerWcf/Models/Definition.cs class Definition (line 5) | internal class Definition method Serialize (line 9) | public void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/DefinitionProperty.cs class DefinitionProperty (line 7) | internal class DefinitionProperty method DefinitionProperty (line 9) | public DefinitionProperty() method Serialize (line 60) | public void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/DefinitionSchema.cs class DefinitionSchema (line 7) | internal class DefinitionSchema method Serialize (line 27) | public void Serialize(JsonWriter writer) method SerializeRequired (line 103) | private void SerializeRequired(JsonWriter writer) method SerializeExternalDocs (line 117) | private void SerializeExternalDocs(JsonWriter writer) method SerializeProperties (line 126) | private void SerializeProperties(JsonWriter writer) FILE: src/SwaggerWcf/Models/Example.cs class Example (line 3) | internal class Example FILE: src/SwaggerWcf/Models/ExternalDocumentation.cs class ExternalDocumentation (line 6) | internal class ExternalDocumentation method Serialize (line 12) | public void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/InType.cs type InType (line 3) | internal enum InType FILE: src/SwaggerWcf/Models/Info.cs class Info (line 6) | public class Info method Serialize (line 20) | internal void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/InfoContact.cs class InfoContact (line 7) | public class InfoContact method Serialize (line 23) | internal void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/InfoLicense.cs class InfoLicense (line 7) | public class InfoLicense method Serialize (line 21) | internal void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/ParameterBase.cs class ParameterBase (line 6) | internal abstract class ParameterBase method Serialize (line 17) | public abstract void Serialize(JsonWriter writer); method Serialize (line 18) | public abstract void Serialize(JsonWriter writer, bool skipStartEndObj... FILE: src/SwaggerWcf/Models/ParameterItems.cs class ParameterItems (line 6) | internal class ParameterItems method Serialize (line 14) | public void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/ParameterPrimitive.cs class ParameterPrimitive (line 7) | internal class ParameterPrimitive : ParameterBase method ParameterPrimitive (line 9) | public ParameterPrimitive() method Serialize (line 54) | public override void Serialize(JsonWriter writer) method Serialize (line 58) | public override void Serialize(JsonWriter writer, bool skipStartEndObj... FILE: src/SwaggerWcf/Models/ParameterSchema.cs class ParameterSchema (line 6) | internal class ParameterSchema : ParameterBase method Serialize (line 10) | public override void Serialize(JsonWriter writer) method Serialize (line 14) | public override void Serialize(JsonWriter writer, bool skipStartEndObj... FILE: src/SwaggerWcf/Models/ParameterType.cs type ParameterType (line 3) | public enum ParameterType FILE: src/SwaggerWcf/Models/Path.cs class Path (line 7) | internal class Path method Path (line 9) | public Path() method Serialize (line 18) | public void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/PathAction.cs class PathAction (line 7) | internal class PathAction method PathAction (line 9) | public PathAction() method Serialize (line 45) | public void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/Property.cs class Property (line 7) | internal class Property method Property (line 9) | public Property() method Serialize (line 60) | public void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/Response.cs class Response (line 7) | internal class Response method Serialize (line 19) | public void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/Schema.cs class Schema (line 7) | internal class Schema method Serialize (line 27) | public void Serialize(JsonWriter writer) method SerializeRequired (line 106) | private void SerializeRequired(JsonWriter writer) method SerializeExternalDocs (line 120) | private void SerializeExternalDocs(JsonWriter writer) method SerializeProperties (line 129) | private void SerializeProperties(JsonWriter writer) FILE: src/SwaggerWcf/Models/SecurityAuthorization.cs class SecurityAuthorization (line 6) | public class SecurityAuthorization method Serialize (line 55) | public void Serialize(JsonWriter writer) FILE: src/SwaggerWcf/Models/SecurityDefinitions.cs class SecurityDefinitions (line 5) | public class SecurityDefinitions : Dictionary Process(IList hiddenTags, IList... method IsHidden (line 39) | private static bool IsHidden(Type type, ICollection hiddenTags... method ConvertTypeToDefinition (line 52) | private static Definition ConvertTypeToDefinition(Type definitionType,... method ProcessTypeAttributes (line 106) | private static void ProcessTypeAttributes(Type definitionType, Definit... method GetEnumerableType (line 131) | public static Type GetEnumerableType(Type type) method LastValidValue (line 146) | private static T LastValidValue(IEnumerable(T opt, Action setter) method ApplyAttributeOptions (line 160) | public static void ApplyAttributeOptions(PropertyInfo propertyInfo, De... method ApplyAttributeOptions (line 178) | public static void ApplyAttributeOptions(FieldInfo fieldInfo, Definiti... method ApplyAttributeOptions (line 196) | public static void ApplyAttributeOptions(IEnumerable FilterUnique(this IEnumerable list) FILE: src/SwaggerWcf/Support/Helpers.cs class Helpers (line 12) | internal static class Helpers method MapSwaggerType (line 14) | public static TypeFormat MapSwaggerType(Type type, IList definit... method BuildTypeString (line 128) | private static string BuildTypeString(string typeName, string defaultN... method GetCustomAttributeValue (line 142) | public static T1 GetCustomAttributeValue(MethodInfo method, st... method GetCustomAttributeValue (line 161) | public static bool GetCustomAttributeValue(MethodInfo method, strin... method MapElementType (line 179) | internal static TypeFormat MapElementType(Type type, List defini... method TagIsHidden (line 194) | internal static bool TagIsHidden(this Dictionary t... FILE: src/SwaggerWcf/Support/ListExtensions.cs class ListExtensions (line 6) | public static class ListExtensions method ClosestMatch (line 8) | public static string ClosestMatch(this List list, string value) method Compute (line 29) | private static int Compute(string s, string t) FILE: src/SwaggerWcf/Support/Mapper.cs class Mapper (line 17) | internal class Mapper method Mapper (line 19) | internal Mapper(IList hiddenTags, List visibleTags) method FindMethods (line 28) | internal IEnumerable FindMethods(Type markedType, IList de... method GetPath (line 101) | private Path GetPath(string id, List paths) method ConcatPaths (line 117) | private static string ConcatPaths(string basePath, string pathUrl) method GetActions (line 129) | internal IEnumerable> GetActions(MethodInfo[... method GetUriTemplate (line 353) | private string GetUriTemplate(WebInvokeAttribute wi, WebGetAttribute w... method RemoveParametersDefaultValuesFromUri (line 358) | private string RemoveParametersDefaultValuesFromUri(string uriTemplate) method IsRequestWrapped (line 376) | private static bool IsRequestWrapped(WebGetAttribute wg, WebInvokeAttr... method IsResponseWrapped (line 385) | private static bool IsResponseWrapped(WebGetAttribute wg, WebInvokeAtt... method GetParameter (line 394) | private ParameterBase GetParameter(TypeFormat typeFormat, method ResolveParameterNameFromUri (line 550) | private static string ResolveParameterNameFromUri(string uriTemplate, ... method GetParameterNameTemplate (line 565) | private static string GetParameterNameTemplate(string parameterName) method GetInType (line 570) | private InType GetInType(string uriTemplate, string parameterName) method GetConsumes (line 585) | private IEnumerable GetConsumes(MethodInfo implementation, Met... method GetProduces (line 617) | private IEnumerable GetProduces(MethodInfo implementation, Met... method ConvertWebMessageFormatToContentType (line 648) | private string ConvertWebMessageFormatToContentType(WebMessageFormat f... method GetResponseCodes (line 660) | private List GetResponseCodes(MethodInfo implementation, Met... method ConvertResponse (line 696) | private Response ConvertResponse(SwaggerWcfResponseAttribute ra, Schem... method GetExample (line 727) | private Example GetExample(SwaggerWcfResponseAttribute ra) method BuildSchemaForEnum (line 739) | private Schema BuildSchemaForEnum(Type returnType, IList definit... method BuildSchema (line 755) | private Schema BuildSchema(Type type, MethodInfo implementation, Metho... method GetDefaultValue (line 822) | private static object GetDefaultValue(Type type) method GetTaskInnerType (line 834) | private static Type GetTaskInnerType(Type type) method GetMethodSecurity (line 842) | private static List> GetMethodSecurity(... method GetEnumerableType (line 863) | public static Type GetEnumerableType(Type type) FILE: src/SwaggerWcf/Support/MethodInfoExtensions.cs class MethodInfoExtensions (line 8) | public static class MethodInfoExtensions method GetWrappedName (line 10) | public static string GetWrappedName(this MethodInfo implementation, Me... FILE: src/SwaggerWcf/Support/Serializer.cs class Serializer (line 9) | internal class Serializer method Process (line 11) | internal static string Process(Service service) FILE: src/SwaggerWcf/Support/ServiceBuilder.cs class ServiceBuilder (line 14) | internal class ServiceBuilder method Build (line 16) | public static Service Build(string path) method Build (line 21) | public static Service Build(string path) method BuildServiceCommon (line 26) | private static Service BuildServiceCommon(string path, Action GetHiddenTags(SwaggerWcfSection config) method GetVisibleTags (line 56) | private static List GetVisibleTags(SwaggerWcfSection config) method GetSettings (line 64) | private static IReadOnlyDictionary GetSettings(Swagger... method ProcessSettings (line 70) | private static void ProcessSettings(Service service, IReadOnlyDictiona... method BuildPaths (line 107) | private static void BuildPaths(Service service, IList hiddenTa... method GetAssemblyTypes (line 147) | private static IEnumerable GetAssemblyTypes(IList hi... method BuildPaths (line 175) | private static void BuildPaths(Service service, IList method GetModelWrappedName (line 25) | public static string GetModelWrappedName(this Type type) => method GetServiceInfo (line 28) | internal static Info GetServiceInfo(this TypeInfo typeInfo) FILE: src/SwaggerWcf/Support/TypeFieldsProcessor.cs class TypeFieldsProcessor (line 13) | internal static class TypeFieldsProcessor method ProcessFields (line 16) | public static void ProcessFields(Type definitionType, DefinitionSchema... method ProcessField (line 63) | private static DefinitionProperty ProcessField(FieldInfo propertyInfo,... FILE: src/SwaggerWcf/Support/TypePropertiesProcessor.cs class TypePropertiesProcessor (line 13) | internal static class TypePropertiesProcessor method ProcessProperties (line 16) | public static void ProcessProperties(Type definitionType, DefinitionSc... method ProcessProperty (line 63) | private static DefinitionProperty ProcessProperty(PropertyInfo propert... FILE: src/SwaggerWcf/SwaggerWcfEndpoint.cs class SwaggerWcfEndpoint (line 18) | [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityR... method SwaggerWcfEndpoint (line 21) | public SwaggerWcfEndpoint() method SwaggerWcfEndpoint (line 26) | internal SwaggerWcfEndpoint(Func buildService) method Configure (line 47) | public static void Configure(Info info, SecurityDefinitions securityDe... method Init (line 54) | [MethodImpl(MethodImplOptions.Synchronized)] method GetAllPaths (line 75) | private static string[] GetAllPaths() method GetSwaggerFileContents (line 81) | private static string GetSwaggerFileContents() method SetCustomZip (line 89) | public static void SetCustomZip(Stream customSwaggerUiZipStream) method SetCustomGetFile (line 95) | public static void SetCustomGetFile(GetFileCustomDelegate getFileCustom) method GetSwaggerFile (line 100) | public Stream GetSwaggerFile() method StaticContent (line 113) | public Stream StaticContent(string content) FILE: src/SwaggerWcf/SwaggerWcfEndpointGeneric.cs class SwaggerWcfEndpoint (line 6) | [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityR... method SwaggerWcfEndpoint (line 9) | public SwaggerWcfEndpoint() : base(ServiceBuilder.Build)