コード例 #1
0
ファイル: PortType.cs プロジェクト: pmq20/mono_forked
        public PortType()
        {
            operations         = new OperationCollection(this);
            serviceDescription = null;
#if NET_2_0
            extensions = new ServiceDescriptionFormatExtensionCollection(this);
#endif
        }
コード例 #2
0
ファイル: PortType.cs プロジェクト: nobled/mono
		public PortType ()
		{
			operations = new OperationCollection (this);
			serviceDescription = null;
#if NET_2_0
			extensions = new ServiceDescriptionFormatExtensionCollection (this);
#endif
		}
コード例 #3
0
 private static Operation FindOperation(OperationCollection operations, OperationBinding bindingOperation)
 {
     foreach (Operation operation in operations)
     {
         if (operation.IsBoundBy(bindingOperation))
         {
             return(operation);
         }
     }
     return(null);
 }
コード例 #4
0
        internal static OperationCollection Create(System.Web.Services.Description.OperationCollection data, TinyXdto.XdtoFactory factory)
        {
            var operations = new List <Operation> ();

            foreach (var oOperation in data)
            {
                var operation = oOperation as System.Web.Services.Description.Operation;
                operations.Add(new Operation(operation, factory));
            }

            return(new OperationCollection(operations));
        }
コード例 #5
0
ファイル: PortType.cs プロジェクト: Profit0004/mono
		public PortType ()
		{
			operations = new OperationCollection (this);
			serviceDescription = null;
			extensions = new ServiceDescriptionFormatExtensionCollection (this);
		}
コード例 #6
0
		public void InitializeOperations()
		{
			// workaround for internal constructor
			PortType portType = new PortType();
			operations = portType.Operations;
		}
コード例 #7
0
ファイル: PortType.cs プロジェクト: Tsalex71/mono-1
 public PortType()
 {
     operations         = new OperationCollection(this);
     serviceDescription = null;
     extensions         = new ServiceDescriptionFormatExtensionCollection(this);
 }
 private static Operation FindOperation(OperationCollection operations, OperationBinding bindingOperation)
 {
     foreach (Operation operation in operations)
     {
         if (operation.IsBoundBy(bindingOperation))
         {
             return operation;
         }
     }
     return null;
 }
コード例 #9
0
		public PortType ()
		{
			operations = new OperationCollection (this);
			serviceDescription = null;
		}