/// <summary>
 /// Initializes a new instance of the <see cref="DefaultUriManager"/> class.
 /// </summary>
 /// <param name="operation">The operation.</param>
 public DefaultUriManager(BaseSosOperation operation)
     : base(operation)
 {
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DefaultUrnManager"/> class.
 /// </summary>
 /// <param name="operation">The operation.</param>
 public DefaultUrnManager(BaseSosOperation operation, IMemoryCache cache)
     : base(operation, cache)
 {
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BaseUriManager"/> class.
 /// </summary>
 /// <param name="operation">The operation.</param>
 protected BaseUriManager(BaseSosOperation operation)
 {
     this.Operation = operation;
 }
示例#4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="OmDefaultObservationFormatter"/> class.
 /// </summary>
 /// <param name="operation">The operation.</param>
 public OmDefaultObservationFormatter(BaseSosOperation operation)
     : base(operation)
 {
 }
示例#5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BaseObservationFormatter"/> class.
 /// </summary>
 /// <param name="operation">The operation.</param>
 protected BaseObservationFormatter(BaseSosOperation operation)
 {
     this.Operation = operation;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BaseUrnManager"/> class.
 /// </summary>
 /// <param name="operation">The operation.</param>
 protected BaseUrnManager(BaseSosOperation operation, IMemoryCache cache)
 {
     this.Operation = operation;
     this.Cache     = cache;
 }