/// <summary>
 /// Initializes a new instance of the <see cref="BasicCustomTraceListenerData"/> with name, fully qualified type name, initial information, and <see cref="TraceOptions"/> output options.
 /// </summary>
 /// <param name="name">The name for the represented <see cref="System.Diagnostics.TraceListener"/>.</param>
 /// <param name="typeName">The fully qualified type name of the represented <see cref="System.Diagnostics.TraceListener"/>.</param>
 /// <param name="initData">The initialization information for the represented <see cref="System.Diagnostics.TraceListener"/>.</param>
 /// <param name="traceOutputOptions">The <see cref="TraceOptions"/> output options.</param>
 public BasicCustomTraceListenerData(string name, string typeName, string initData, TraceOptions traceOutputOptions)
 {
     helper             = CreateHelper();
     ListenerDataType   = GetType();
     Name               = name;
     TypeName           = typeName;
     TraceOutputOptions = traceOutputOptions;
     InitData           = initData;
 }
Esempio n. 2
0
 /// <summary>
 /// Constructs a new <see cref="CustomCallHandlerData"/> instance.
 /// </summary>
 /// <param name="name">Name of handler instance.</param>
 /// <param name="typeName">Name of the handler type to configure.</param>
 public CustomCallHandlerData(string name, string typeName)
 {
     helper   = new CustomProviderDataHelper <CustomCallHandlerData>(this);
     Name     = name;
     TypeName = typeName;
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes with default values.
 /// </summary>
 public CustomLogFilterData()
 {
     helper = new CustomProviderDataHelper <CustomLogFilterData>(this);
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes with name and provider type.
 /// </summary>
 public CustomSecurityCacheProviderData(string name, string typeName)
 {
     helper   = new CustomProviderDataHelper <CustomSecurityCacheProviderData>(this);
     Name     = name;
     TypeName = typeName;
 }
Esempio n. 5
0
 /// <summary>
 /// Constructs a new <see cref="CustomInjectorData"/> instance.
 /// </summary>
 /// <param name="name">Name of injector instance.</param>
 public CustomInjectorData(string name)
 {
     helper = new CustomProviderDataHelper <CustomInjectorData>(this);
     Name   = name;
 }
 /// <summary>
 /// Initializes with default values.
 /// </summary>
 public CustomValidatorData()
 {
     helper = new CustomProviderDataHelper <CustomValidatorData>(this);
 }
 /// <summary>
 /// Initializes with default values.
 /// </summary>
 public CustomAuthorizationProviderData()
 {
     helper = new CustomProviderDataHelper <CustomAuthorizationProviderData>(this);
 }
Esempio n. 8
0
 /// <summary>
 /// Initializes with default values.
 /// </summary>
 public CustomHandlerData()
 {
     helper = new CustomProviderDataHelper <CustomHandlerData>(this);
 }
Esempio n. 9
0
 /// <summary>
 /// Initializes a new instance of the CustomRetryStrategyData class.
 /// </summary>
 public CustomRetryStrategyData()
 {
     this.helper = new CustomProviderDataHelper <CustomRetryStrategyData>(this);
 }
Esempio n. 10
0
 /// <summary>
 /// Constructs a new <see cref="CustomMatchingRuleData"/> instance.
 /// </summary>
 /// <param name="name">Name of the matching rule instance.</param>
 /// <param name="typeName">Name of type of matching rule to create.</param>
 public CustomMatchingRuleData(string name, string typeName)
 {
     helper   = new CustomProviderDataHelper <CustomMatchingRuleData>(this);
     Name     = name;
     TypeName = typeName;
 }
Esempio n. 11
0
 /// <summary>
 /// Constructs a new <see cref="CustomMatchingRuleData"/> instance.
 /// </summary>
 public CustomMatchingRuleData()
 {
     helper = new CustomProviderDataHelper <CustomMatchingRuleData>(this);
 }
Esempio n. 12
0
 /// <summary>
 /// Initializes with default values.
 /// </summary>
 public CustomFormatterData()
 {
     helper = new CustomProviderDataHelper <CustomFormatterData>(this);
 }
Esempio n. 13
0
 /// <summary>
 /// Initializes with name and fully qualified type name of the provider type.
 /// </summary>
 public CustomSymmetricCryptoProviderData(string name, string typeName)
 {
     helper   = new CustomProviderDataHelper <CustomSymmetricCryptoProviderData>(this);
     Name     = name;
     TypeName = typeName;
 }
Esempio n. 14
0
 /// <summary>
 /// Initializes with default values.
 /// </summary>
 public CustomSymmetricCryptoProviderData()
 {
     helper = new CustomProviderDataHelper <CustomSymmetricCryptoProviderData>(this);
 }
Esempio n. 15
0
 /// <summary>
 /// Initializes with default values.
 /// </summary>
 public CustomSampleProviderData()
 {
     helper = new CustomProviderDataHelper <CustomSampleProviderData>(this);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BasicCustomTraceListenerData"/> with default values.
 /// </summary>
 public BasicCustomTraceListenerData()
 {
     helper = CreateHelper();
 }
Esempio n. 17
0
 /// <summary>
 /// Initializes a new instance of the CustomRetryStrategyData class by using the specified name and fully qualified provider type name.
 /// </summary>
 /// <param name="name">The name.</param>
 /// <param name="typeName">The fully qualified type name of the provider type.</param>
 public CustomRetryStrategyData(string name, string typeName)
 {
     this.helper   = new CustomProviderDataHelper <CustomRetryStrategyData>(this);
     this.Name     = name;
     this.TypeName = typeName;
 }
Esempio n. 18
0
 /// <summary>
 /// Initializes with default values.
 /// </summary>
 public CustomCacheStorageData()
 {
     helper = new CustomProviderDataHelper <CustomCacheStorageData>(this);
 }
Esempio n. 19
0
 /// <summary>
 /// Initializes with name and provider type.
 /// </summary>
 public CustomHandlerData(string name, Type type)
 {
     helper = new CustomProviderDataHelper <CustomHandlerData>(this);
     Name   = name;
     Type   = type;
 }
Esempio n. 20
0
 /// <summary>
 /// Initializes with name and provider type.
 /// </summary>
 public CustomCacheStorageData(string name, Type type)
 {
     helper = new CustomProviderDataHelper <CustomCacheStorageData>(this);
     Name   = name;
     Type   = type;
 }
 /// <summary>
 /// Initializes with name and provider type.
 /// </summary>
 public CustomAuthorizationProviderData(string name, string typeName)
 {
     helper   = new CustomProviderDataHelper <CustomAuthorizationProviderData>(this);
     Name     = name;
     TypeName = typeName;
 }
Esempio n. 22
0
 /// <summary>
 /// Initializes with default values.
 /// </summary>
 public CustomSecurityCacheProviderData()
 {
     helper = new CustomProviderDataHelper <CustomSecurityCacheProviderData>(this);
 }
Esempio n. 23
0
 /// <summary>
 /// Initializes with name and provider type.
 /// </summary>
 public CustomValidatorData(string name, string typeName)
 {
     helper   = new CustomProviderDataHelper <CustomValidatorData>(this);
     Name     = name;
     TypeName = typeName;
 }
Esempio n. 24
0
 /// <summary>
 /// Constructs a new <see cref="CustomInjectorData"/> instance.
 /// </summary>
 public CustomInjectorData()
 {
     helper = new CustomProviderDataHelper <CustomInjectorData>(this);
 }