public SignatureInstrumentParameters (InstrumentationCategory category, SignatureInstrumentType type, string identifier, IServerCertificate certificate)
			: base (category, identifier, certificate)
		{
			Type = type;
		}
예제 #2
0
		public MonoServerParameters (string identifier, IServerCertificate certificate)
			: base (identifier, certificate)
		{
		}
예제 #3
0
 public RenegotiationInstrumentParameters(InstrumentationCategory category, RenegotiationInstrumentType type, string identifier, IServerCertificate certificate)
     : base(category, identifier, certificate)
 {
     Type = type;
 }
예제 #4
0
 public ClientAndServerParameters(string identifier, IServerCertificate certificate)
     : base(identifier)
 {
     ServerCertificate = certificate;
 }
 public ConnectionInstrumentParameters(InstrumentationCategory category, string identifier, IServerCertificate certificate)
     : base(category, identifier, certificate)
 {
 }
 public MonoConnectionParameters(string identifier, IServerCertificate certificate)
     : base(identifier, certificate)
 {
 }
예제 #7
0
 public SignatureInstrumentParameters(InstrumentationCategory category, SignatureInstrumentType type, string identifier, IServerCertificate certificate)
     : base(category, identifier, certificate)
 {
     Type = type;
 }
		public MonoClientAndServerParameters (string identifier, IServerCertificate certificate)
			: base (identifier, new MonoClientParameters (identifier), new MonoServerParameters (identifier, certificate))
		{
		}
 public InstrumentationParameters(InstrumentationCategory category, string identifier, IServerCertificate certificate)
     : base(identifier, certificate)
 {
     Category = category;
 }
		public SimpleConnectionParameters (InstrumentationCategory category, SimpleConnectionType type, string identifier, IServerCertificate certificate)
			: base (category, identifier, certificate)
		{
			Type = type;
		}
		public InstrumentationParameters (InstrumentationCategory category, string identifier, IServerCertificate certificate)
			: base (identifier, certificate)
		{
			Category = category;
		}
		public GenericConnectionInstrumentParameters (InstrumentationCategory category, GenericConnectionInstrumentType type, string identifier, IServerCertificate certificate)
			: base (category, identifier, certificate)
		{
			Type = type;
		}
예제 #13
0
 public ServerCertificate(IServerCertificate certificate)
     : base(certificate.Data, certificate.Password)
 {
 }
 public MonoClientAndServerParameters(string identifier, IServerCertificate certificate)
     : base(identifier, certificate)
 {
 }
예제 #15
0
 public SimpleConnectionParameters(InstrumentationCategory category, SimpleConnectionType type, string identifier, IServerCertificate certificate)
     : base(category, identifier, certificate)
 {
     Type = type;
 }
		public ConnectionInstrumentParameters (InstrumentationCategory category, string identifier, IServerCertificate certificate)
			: base (category, identifier, certificate)
		{
		}