Ejemplo n.º 1
0
        public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 10: {
                    if (location_ == null)
                    {
                        Location = new global::Routeguide.Point();
                    }
                    input.ReadMessage(Location);
                    break;
                }

                case 18: {
                    Message = input.ReadString();
                    break;
                }
                }
            }
        }
Ejemplo n.º 2
0
        public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    input.SkipLastField();
                    break;

                case 10: {
                    if (location_ == null)
                    {
                        location_ = new global::Routeguide.Point();
                    }
                    input.ReadMessage(location_);
                    break;
                }

                case 18: {
                    Message = input.ReadString();
                    break;
                }
                }
            }
        }
Ejemplo n.º 3
0
 public void MergeFrom(RouteNote other)
 {
     if (other == null)
     {
         return;
     }
     if (other.location_ != null)
     {
         if (location_ == null)
         {
             location_ = new global::Routeguide.Point();
         }
         Location.MergeFrom(other.Location);
     }
     if (other.Message.Length != 0)
     {
         Message = other.Message;
     }
 }
Ejemplo n.º 4
0
 public void MergeFrom(Feature other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Name.Length != 0)
     {
         Name = other.Name;
     }
     if (other.location_ != null)
     {
         if (location_ == null)
         {
             location_ = new global::Routeguide.Point();
         }
         Location.MergeFrom(other.Location);
     }
 }
Ejemplo n.º 5
0
 public void MergeFrom(RouteNote other)
 {
     if (other == null)
     {
         return;
     }
     if (other.location_ != null)
     {
         if (location_ == null)
         {
             Location = new global::Routeguide.Point();
         }
         Location.MergeFrom(other.Location);
     }
     if (other.Message.Length != 0)
     {
         Message = other.Message;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
Ejemplo n.º 6
0
 public void MergeFrom(Feature other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Name.Length != 0)
     {
         Name = other.Name;
     }
     if (other.location_ != null)
     {
         if (location_ == null)
         {
             location_ = new global::Routeguide.Point();
         }
         Location.MergeFrom(other.Location);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
Ejemplo n.º 7
0
 public void MergeFrom(Rectangle other)
 {
     if (other == null)
     {
         return;
     }
     if (other.lo_ != null)
     {
         if (lo_ == null)
         {
             lo_ = new global::Routeguide.Point();
         }
         Lo.MergeFrom(other.Lo);
     }
     if (other.hi_ != null)
     {
         if (hi_ == null)
         {
             hi_ = new global::Routeguide.Point();
         }
         Hi.MergeFrom(other.Hi);
     }
 }
Ejemplo n.º 8
0
 public void MergeFrom(Rectangle other)
 {
     if (other == null)
     {
         return;
     }
     if (other.lo_ != null)
     {
         if (lo_ == null)
         {
             Lo = new global::Routeguide.Point();
         }
         Lo.MergeFrom(other.Lo);
     }
     if (other.hi_ != null)
     {
         if (hi_ == null)
         {
             Hi = new global::Routeguide.Point();
         }
         Hi.MergeFrom(other.Hi);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
Ejemplo n.º 9
0
 /// <summary>
 /// A simple RPC.
 ///
 /// Obtains the feature at a given position.
 ///
 /// A feature with an empty name is returned if there's no feature at the given
 /// position.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
 /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
 /// <param name="cancellationToken">An optional token for canceling the call.</param>
 /// <returns>The response received from the server.</returns>
 public virtual global::Routeguide.Feature GetFeature(global::Routeguide.Point request, grpc::Metadata headers = null, global::System.DateTime?deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
 {
     return(GetFeature(request, new grpc::CallOptions(headers, deadline, cancellationToken)));
 }
Ejemplo n.º 10
0
            public AsyncUnaryCall <global::Routeguide.Feature> GetFeatureAsync(global::Routeguide.Point request, CallOptions options)
            {
                var call = CreateCall(__Method_GetFeature, options);

                return(Calls.AsyncUnaryCall(call, request));
            }
Ejemplo n.º 11
0
            public global::Routeguide.Feature GetFeature(global::Routeguide.Point request, Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
            {
                var call = CreateCall(__Method_GetFeature, new CallOptions(headers, deadline, cancellationToken));

                return(Calls.BlockingUnaryCall(call, request));
            }
Ejemplo n.º 12
0
 /// <summary>
 /// A simple RPC.
 ///
 /// Obtains the feature at a given position.
 ///
 /// A feature with an empty name is returned if there's no feature at the given
 /// position.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="options">The options for the call.</param>
 /// <returns>The call object.</returns>
 public virtual grpc::AsyncUnaryCall <global::Routeguide.Feature> GetFeatureAsync(global::Routeguide.Point request, grpc::CallOptions options)
 {
     return(CallInvoker.AsyncUnaryCall(__Method_GetFeature, null, options, request));
 }
Ejemplo n.º 13
0
 /// <summary>
 /// A simple RPC.
 ///
 /// Obtains the feature at a given position.
 ///
 /// A feature with an empty name is returned if there's no feature at the given
 /// position.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
 /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
 /// <param name="cancellationToken">An optional token for canceling the call.</param>
 /// <returns>The call object.</returns>
 public virtual grpc::AsyncUnaryCall <global::Routeguide.Feature> GetFeatureAsync(global::Routeguide.Point request, grpc::Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(GetFeatureAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken)));
 }
Ejemplo n.º 14
0
 /// <summary>
 /// A simple RPC.
 ///
 /// Obtains the feature at a given position.
 ///
 /// A feature with an empty name is returned if there's no feature at the given
 /// position.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="options">The options for the call.</param>
 /// <returns>The response received from the server.</returns>
 public virtual global::Routeguide.Feature GetFeature(global::Routeguide.Point request, grpc::CallOptions options)
 {
     return(CallInvoker.BlockingUnaryCall(__Method_GetFeature, null, options, request));
 }
Ejemplo n.º 15
0
 /// <summary>
 /// A simple RPC.
 ///
 /// Obtains the feature at a given position.
 ///
 /// A feature with an empty name is returned if there's no feature at the given
 /// position.
 /// </summary>
 /// <param name="request">The request received from the client.</param>
 /// <param name="context">The context of the server-side call handler being invoked.</param>
 /// <returns>The response to send back to the client (wrapped by a task).</returns>
 public virtual global::System.Threading.Tasks.Task <global::Routeguide.Feature> GetFeature(global::Routeguide.Point request, grpc::ServerCallContext context)
 {
     throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
 }
Ejemplo n.º 16
0
 /// <summary>
 ///  A simple RPC.
 ///
 ///  Obtains the feature at a given position.
 ///
 ///  A feature with an empty name is returned if there's no feature at the given
 ///  position.
 /// </summary>
 public virtual global::Routeguide.Feature GetFeature(global::Routeguide.Point request, Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(GetFeature(request, new CallOptions(headers, deadline, cancellationToken)));
 }
Ejemplo n.º 17
0
            public global::Routeguide.Feature GetFeature(global::Routeguide.Point request, CallOptions options)
            {
                var call = CreateCall(__Method_GetFeature, options);

                return(Calls.BlockingUnaryCall(call, request));
            }