Пример #1
0
 // for V1 legacy reasons, a mex endpoint is considered a system endpoint even if IsSystemEndpoint = false
 internal bool InternalIsSystemEndpoint(ServiceDescription description)
 {
     if (ServiceMetadataBehavior.IsMetadataEndpoint(description, this))
     {
         return(true);
     }
     return(this.IsSystemEndpoint);
 }
Пример #2
0
 internal bool InternalIsSystemEndpoint(System.ServiceModel.Description.ServiceDescription description)
 {
     return(ServiceMetadataBehavior.IsMetadataEndpoint(description, this) || this.IsSystemEndpoint);
 }