コード例 #1
0
 private void BindPropertiesFromOptions(EventNotificationServiceOptions options)
 {
     Condition.Requires(options, nameof(options)).IsNotNull();
     this.FirebaseMessagingApiUri = options.FirebaseMessagingApiUri;
     this.FirebaseMessagingApiKey = options.FirebaseMessagingApiKey;
     this.PublicHostName          = options.PublicHostName;
 }
コード例 #2
0
 public EventNotificationService(EventNotificationServiceOptions options)
 {
     BindPropertiesFromOptions(options);
 }